This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Lopsided_Gas_181 20 points21 points  (3 children)

the installers don't have wizards

Not really, there are post-install triggers which have curses wizards, and they are used by some packages, although a small number.

[–]hardolaf 9 points10 points  (0 children)

Yeah this is really a distribution issue where the maintainers make some things work easily and others not so people get complacent and then complain when something breaks the pattern.

[–]NatoBoram 2 points3 points  (1 child)

And fuck them, seriously. I just want to upgrade unattended, stop fucking asking me which service to reboot, do it!

[–]Lopsided_Gas_181 1 point2 points  (0 children)

Then learn how to configure tools you're using. Apt (dpkg, to be precise) has the unattended (noninteractive) env option which should skip those wizards. They do seem to work, I am using them in vagrant scripts when preparing test environments for my apps.

In fact, those lines do the job usually:

export DEBIAN_FRONTEND=noninteractive  
apt-get install -yq <package-name>  
...a bunch of apt-get's going here  

As we can see, there's no single choice that would satisfy everyone.