89 votes

Faire en sorte qu'apt-get (ou aptitude) fonctionne avec -y mais ne demande pas le remplacement des fichiers de configuration ?

En cours d'exécution apt-get -y install <packages ...> sur Ubuntu 10.04, je voudrais apt-get (ou aptitude si cela facilite les choses) pour ne pas m'avertir lors de l'installation de dépendances supplémentaires (comportement de -y comme je le comprends) et mais no me demande d'écraser les fichiers de configuration, mais suppose plutôt de conserver toujours les fichiers existants (ce qui est généralement le cas par défaut). Malheureusement, --trivial-only semble être l'inverse de -y et n'affecte pas l'invite qui s'affiche, selon la norme man page.

En particulier, les paquets tels que samba , nullmailer , localepurge y lighttpd m'ont obligé à interagir avec le terminal, même si toute la procédure était scriptée et censée être non interactive.

120voto

Matthew Points 101

Vous pouvez utiliser :

sudo apt-get update
sudo apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" dist-upgrade

Pour des paquets spécifiques seulement, par exemple mypackage1 mypackage2 :

sudo apt-get update
sudo apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install mypackage1 mypackage2

Source : http://raphaelhertzog.com/2010/09/21/debian-conffile-configuration-file-managed-by-dpkg/

Avoiding the conffile prompt

Every time that dpkg must install a new conffile that you have modified
(and a removed file is only a particular case of a modified file in dpkg’s eyes),
it will stop the upgrade and wait your answer. This can be particularly annoying for
major upgrades. That’s why you can give predefined answers to dpkg with the help
of multiple --force-conf* options:

    --force-confold: do not modify the current configuration file, the new version
is installed with a .dpkg-dist suffix. With this option alone, even configuration
files that you have not modified are left untouched. You need to combine it with
--force-confdef to let dpkg overwrite configuration files that you have not modified.
    --force-confnew: always install the new version of the configuration file, the
current version is kept in a file with the .dpkg-old suffix.
    --force-confdef: ask dpkg to decide alone when it can and prompt otherwise. This
is the default behavior of dpkg and this option is mainly useful in combination with
--force-confold.
    --force-confmiss: ask dpkg to install the configuration file if it’s currently
missing (for example because you have removed the file by mistake).

If you use Apt, you can pass options to dpkg with a command-line like this:

$ apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" dist-upgrade

You can also make those options permanent by creating /etc/apt/apt.conf.d/local:

Dpkg::Options {
   "--force-confdef";
   "--force-confold";
}

Vous pouvez trouver plus d'informations et plus d'options dans le manuel dpkg à l'adresse suivante http://manpages.ubuntu.com/manpages/xenial/en/man1/dpkg.1.html o man dpkg et c'est-à-dire chercher "confdef".

SistemesEz.com

SystemesEZ est une communauté de sysadmins où vous pouvez résoudre vos problèmes et vos doutes. Vous pouvez consulter les questions des autres sysadmins, poser vos propres questions ou résoudre celles des autres.

Powered by:

X