cronを使用してシステムの更新を自動化しようとしています。以下に、私のcrontab、コマンド、および結果のエラーを見ることができます。
rootとしてupgrades.shを実行すると、スクリプトは正常に実行されます。cronを実行すると、apt-get -y update
問題は発生しませんが、aptitude -y safe-upgrade
失敗します。私はこのエラーを推測しています:debconf: (This frontend requires a controlling tty.)
カーネルの更新があり、それが順番にgrubを更新するため、上書きすることを明示的に言う必要があります/boot/grub/menu.lst
。しかし、パスエラーがわかりません。そして、私の監督を必要としないアップデートが欲しいのです。
私はこの質問unattended-upgrades
を読んで、それはまだ受け入れられていない解決策であり、それを使用することになりますが、なぜcronを使用できないのですか?本当にシンプルで、もっとLinuxyである必要があるようです。
クロンタブ
root@daedalus:~/bin# crontab -l
# m h dom mon dow command
45 06 * * * ~/bin/upgrades.sh
upgrades.sh
root@daedalus:~/bin# cat upgrades.sh
#!/bin/bash
/usr/bin/apt-get -y update
/usr/bin/aptitude -y safe-upgrade
エラー
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (This frontend requires a controlling tty.)
debconf: falling back to frontend: Teletype
dpkg-preconfigure: unable to re-open stdin:
Fetched 37.6MB in 4min 23s (143kB/s)
dpkg: warning: 'ldconfig' not found on PATH.
dpkg: warning: 'start-stop-daemon' not found on PATH.
dpkg: warning: 'update-rc.d' not found on PATH.
dpkg: 3 expected program(s) not found on PATH.
NB: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin.
E: Sub-process /usr/bin/dpkg returned an error code (2)
A package failed to install. Trying to recover:
dpkg: warning: 'ldconfig' not found on PATH.
dpkg: warning: 'start-stop-daemon' not found on PATH.
dpkg: warning: 'update-rc.d' not found on PATH.
dpkg: 3 expected program(s) not found on PATH.
NB: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin.
Reading package lists...
Building dependency tree...
Reading state information...
Reading extended state information...
Initializing package states...
Writing extended state information...