Sistem güncellemelerimi otomatikleştirmek için cron kullanmaya çalışıyorum. Aşağıda crontab'ımı, komutlarımı ve ortaya çıkan hataları görebilirsiniz.
Upgrade.sh dosyasını root olarak çalıştırdığımda script iyi çalışıyor. Cron çalıştırdığında apt-get -y update
sorun çıkarmaz ama aptitude -y safe-upgrade
başarısız olur. Bu hatayı tahmin ediyorum: debconf: (This frontend requires a controlling tty.)
sırayla üzerine yazmak için tamam olduğunu söyleyerek gerektiren grub güncellemeleri bir çekirdek güncelleme var çünkü /boot/grub/menu.lst
. Ama yol hatalarını anlamıyorum. Ve denetimimin yapılmasını gerektirmeyen güncellemeleri istiyorum.
Bu soruyuunattended-upgrades
okudum ve henüz kabul edilmemiş bir çözümü var ve bunu kullanabilirim, ama neden cron kullanamıyorum? Gerçekten basit ve daha linuxy olmalı gibi görünüyor.
crontab
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
Hatalar
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...