From: Arvin Schnell Date: Thu, 3 Mar 2011 16:29:03 +0000 (+0100) Subject: - run snapper with --quiet from cron scripts X-Git-Tag: v0.1.3~434 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7be3b2014dbcf7629c5b3ca4509808bcb40dae07;p=thirdparty%2Fsnapper.git - run snapper with --quiet from cron scripts --- diff --git a/scripts/snapper-daily b/scripts/snapper-daily index 3893cde9..4a78a130 100755 --- a/scripts/snapper-daily +++ b/scripts/snapper-daily @@ -28,15 +28,15 @@ for CONFIG in $SNAPPER_CONFIGS ; do . /etc/snapper/configs/$CONFIG if [ "$NUMBER_CLEANUP" = "yes" ] ; then - snapper --config=$CONFIG cleanup number + snapper --config=$CONFIG --quiet cleanup number fi if [ "$TIMELINE_CLEANUP" = "yes" ] ; then - snapper --config=$CONFIG cleanup timeline + snapper --config=$CONFIG --quiet cleanup timeline fi if [ "$EMPTY_PRE_POST_CLEANUP" = "yes" ] ; then - snapper --config=$CONFIG cleanup empty-pre-post + snapper --config=$CONFIG --quiet cleanup empty-pre-post fi done diff --git a/scripts/snapper-hourly b/scripts/snapper-hourly index 46cd781d..8f2d41fc 100755 --- a/scripts/snapper-hourly +++ b/scripts/snapper-hourly @@ -26,7 +26,7 @@ for CONFIG in $SNAPPER_CONFIGS ; do . /etc/snapper/configs/$CONFIG if [ "$TIMELINE_CREATE" = "yes" ] ; then - snapper --config=$CONFIG create --description="timeline" --cleanup="timeline" + snapper --config=$CONFIG --quiet create --description="timeline" --cleanup="timeline" fi done