Torna o apt-get (ou aptitude) executado com -y mas não solicita a substituição de arquivos de configuração?

56

Ao rodar apt-get -y install <packages ...> no Ubuntu 10.04 eu gostaria que apt-get (ou aptitude , se isso facilitar) não me avisasse ao instalar dependências adicionais (comportamento de -y como eu entendi) e mas < strong> not me avisa sobre sobrescrever arquivos de configuração, em vez disso, assume para manter os existentes sempre (que normalmente é o padrão). Infelizmente --trivial-only parece ser o inverso de -y e não afeta o prompt mostrado, de acordo com a página man .

Em especial, pacotes como samba , nullmailer , localepurge e lighttpd me forçaram a interagir com o terminal, mesmo que todo o procedimento tenha sido roteirizado e tenha sido não interativo.

    
por 0xC0000022L 17.02.2012 / 00:00

1 resposta

79

Você pode usar:

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

Apenas para pacotes específicos, por ex. mypackage1 mypackage2:

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

Fonte: link

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";
}

Você pode encontrar mais informações e mais opções no manual do dpkg em link ou man dpkg e isto é, procure por "confdef".

    
por Savvas Radevic 17.02.2012 / 01:09

Tags