[Glibc-bsd-commits] r3948 - trunk/zfsutils/debian

Robert Millan rmh at alioth.debian.org
Sat Dec 17 09:33:39 UTC 2011


Author: rmh
Date: 2011-12-17 09:33:38 +0000 (Sat, 17 Dec 2011)
New Revision: 3948

Modified:
   trunk/zfsutils/debian/changelog
   trunk/zfsutils/debian/zfsutils.cron.daily
Log:
zfsutils.cron.daily: Remove verbose output.

Modified: trunk/zfsutils/debian/changelog
===================================================================
--- trunk/zfsutils/debian/changelog	2011-12-16 21:00:11 UTC (rev 3947)
+++ trunk/zfsutils/debian/changelog	2011-12-17 09:33:38 UTC (rev 3948)
@@ -2,8 +2,9 @@
 
   * zfsutils.cron.daily: Fix to avoid listing children file systems'
     snapshots as candidates for removal.
+  * zfsutils.cron.daily: Remove verbose output.
 
- -- Robert Millan <rmh at debian.org>  Thu, 15 Dec 2011 19:13:01 +0100
+ -- Robert Millan <rmh at debian.org>  Sat, 17 Dec 2011 10:33:27 +0100
 
 zfsutils (8.3~svn226546-6) unstable; urgency=low
 

Modified: trunk/zfsutils/debian/zfsutils.cron.daily
===================================================================
--- trunk/zfsutils/debian/zfsutils.cron.daily	2011-12-16 21:00:11 UTC (rev 3947)
+++ trunk/zfsutils/debian/zfsutils.cron.daily	2011-12-17 09:33:38 UTC (rev 3948)
@@ -44,7 +44,6 @@
 
 for fs in $AUTOSNAP_FILESYSTEMS ; do
 	# Create today's snapshot.
-	echo zfs snapshot ${fs}@autosnap-$(date +%F)
 	zfs snapshot ${fs}@autosnap-$(date +%F)
 
 	# Remove any snapshots in the same class as today's addition.
@@ -56,9 +55,7 @@
 		done \
 	| sort -nr \
 	| while read class creation name ; do
-		echo ${class} ${name}
 		if [ ${class} == "${previous_class}" ] ; then
-			echo zfs destroy "${name}"
 			zfs destroy "${name}"
 		fi
 		previous_class="${class}"




More information about the Glibc-bsd-commits mailing list