mirror of
https://github.com/openSUSE/snapper.git
synced 2026-02-05 15:46:00 +01:00
60 lines
1.0 KiB
Bash
Executable File
60 lines
1.0 KiB
Bash
Executable File
#!/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 timeline 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
|
|
|
|
#
|
|
# run snapper cleanup for all configs
|
|
#
|
|
for CONFIG in $SNAPPER_CONFIGS ; do
|
|
|
|
NUMBER_CLEANUP="no"
|
|
TIMELINE_CLEANUP="no"
|
|
EMPTY_PRE_POST_CLEANUP="no"
|
|
|
|
. /etc/snapper/configs/$CONFIG
|
|
|
|
if [ "$NUMBER_CLEANUP" = "yes" ] ; then
|
|
snapper --config=$CONFIG --quiet cleanup number
|
|
fi
|
|
|
|
if [ "$TIMELINE_CLEANUP" = "yes" ] ; then
|
|
snapper --config=$CONFIG --quiet cleanup timeline
|
|
fi
|
|
|
|
if [ "$EMPTY_PRE_POST_CLEANUP" = "yes" ] ; then
|
|
snapper --config=$CONFIG --quiet cleanup empty-pre-post
|
|
fi
|
|
|
|
done
|
|
|
|
exit 0
|