aptitude のインタラクティブな質問に自動でYって答える(confnewの選択)

% sudo apt-get -y install hoge

とかでなんとかなるやつなら良いけど、たとえば、

Configuration file `/etc/hoge.conf'
 ==> File on system created by you or by a script.
 ==> File also in package provided by package maintainer.   
What would you like to do about it ?  Your options are:
    Y or I  : install the package maintainer's version
    N or O  : keep your currently-installed version
      D     : show the differences between the versions
      Z     : background this process to examine the situation
 The default action is to keep your current version.
*** hoge.conf (Y/I/N/O/D/Z) [default=N] ? 

みたいなダイアログで、 デフォルトで new の方になってくれない+ Y って答えてくれない場合があって、自動化でなんちゃらやるスクリプトとか書いて実行してるとそこで止まって悲しい。

そういうときは、apt-get とかで

% sudo apt-get -y --force-yes -o Dpkg::Options::=--force-confnew install hoge

とか。Dpkg::Options をつける。


まあ、よく分からないパッケージをインストールするときは注意が必要だけど、設定ファイルとかもろもろパッケージ化したりして管理してる場合には役に立つかも。