up vote 4 down vote favorite
3
share [g+] share [fb]

I'm trying to create a script that automatically downloads packages for new servers. However, some things like 'mysql-server' can not installed automatically cause you need to configure them in the ncurses interface first. I've looked through the man pages and can't find anything appropriate.

I don't care if I have to upload/edit a conf file later -- I just need the appropriate packages installed.

Anyone know what to do besides grabbing tarballs and building them myself?

UPDATE found out that for things like mysql-server you can just do:

DEBIAN_FRONTEND='noninteractive' apt-get install -yq mysql-server

however expect looks like something I'll need for sun-java6-jdk; haven't evaluated it yet

link|improve this question

53% accept rate
feedback

4 Answers

up vote 2 down vote accepted

For packages that ask questions through debconf (which is what puts up the ncurses display), you can pre-answer the questions. For sun-java, the questions can be pre-answered by following the instructions at http://www.davidpashley.com/blog/debian/java-license

link|improve this answer
feedback

I'm not sure exactly what configuration mysql-server needs, but you could try something like expect

link|improve this answer
thanks for the suggestion -- I remember coming across that years ago and totally disregarded it -- looks like it's the hot ticket here however – feydr Mar 31 '09 at 18:21
feedback

I would look into cron-apt. I haven't tried it myself, but it's package description sounds promising.

link|improve this answer
feedback

Answer from ossramblings.com:

First, install your package normally; then, extract the configuration answers from the debconf data files:

sudo apt-get install debconf-utils
sudo debconf-get-selections | grep mypackage > something.seed

Then, for other installations, you can apply it before installing the package:

debconf-set-selections ./something.seed
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.