1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
#!/bin/sh
#
# paranoia settings
#
umask 022
PATH=/sbin:/bin:/usr/sbin:/usr/bin
export PATH
#
# get information from /etc/sysconfig/snapper
#
if [ -f /etc/sysconfig/snapper ] ; then
. /etc/sysconfig/snapper
fi
#
# run snapper for all configs
#
for CONFIG in $SNAPPER_CONFIGS ; do
TIMELINE_CREATE="no"
. /etc/snapper/configs/$CONFIG
if [ "$TIMELINE_CREATE" = "yes" ] ; then
snapper --config=$CONFIG --quiet create --description="timeline" --cleanup-algorithm="timeline"
fi
done
exit 0
|