File: snapper-daily

package info (click to toggle)
snapper 0.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,576 kB
  • ctags: 2,049
  • sloc: cpp: 15,605; sh: 11,424; ansic: 1,401; makefile: 287; python: 159
file content (44 lines) | stat: -rwxr-xr-x 744 bytes parent folder | download | duplicates (6)
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
35
36
37
38
39
40
41
42
43
44
#!/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

    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