You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
314 B
Plaintext
12 lines
314 B
Plaintext
7 years ago
|
#!/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
|