Files
shadow/debian/passwd.cron.daily
T
nekral-guest 68fdd46a81 * debian/passwd.cron.daily: Handle the backups of the user and group
databases so that it can be removed from the standard daily cron job.
    Closes: #554170
2010-03-20 10:45:12 +00:00

10 lines
244 B
Bash

#!/bin/sh
cd /var/backups || exit 0
for FILE in passwd group shadow gshadow; do
test -f /etc/$FILE || continue
cmp -s $FILE.bak /etc/$FILE && continue
cp -p $FILE $FILE.bak && chmod 600 $FILE.bak
done