/cron.daily/aptitude
http://github.com/brinkman83/bashrc · Shell · 11 lines · 7 code · 2 blank · 2 comment · 3 complexity · f934222d5eb13cb132e2751bdb023318 MD5 · raw file
- #!/bin/sh
- bak=/var/backups
- # Shamelessly ripped from /etc/cron.daily/standard
- if test -f /var/lib/aptitude/pkgstates && cd $bak ; then
- if ! cmp -s aptitude.pkgstates.0 /var/lib/aptitude/pkgstates ; then
- cp -p /var/lib/aptitude/pkgstates aptitude.pkgstates
- savelog -c 7 aptitude.pkgstates > /dev/null
- fi
- fi