/cron.daily/aptitude

http://github.com/brinkman83/bashrc · Shell · 11 lines · 7 code · 2 blank · 2 comment · 3 complexity · f934222d5eb13cb132e2751bdb023318 MD5 · raw file

  1. #!/bin/sh
  2. bak=/var/backups
  3. # Shamelessly ripped from /etc/cron.daily/standard
  4. if test -f /var/lib/aptitude/pkgstates && cd $bak ; then
  5. if ! cmp -s aptitude.pkgstates.0 /var/lib/aptitude/pkgstates ; then
  6. cp -p /var/lib/aptitude/pkgstates aptitude.pkgstates
  7. savelog -c 7 aptitude.pkgstates > /dev/null
  8. fi
  9. fi