From be5802b1204f48d8bb67a86343a2cfe930f4c323 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Thu, 5 Jun 2014 20:37:28 +0200 Subject: [PATCH] zb-cleanup: density calculation fix --- zb-cleanup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zb-cleanup b/zb-cleanup index e193fbf..5f7c07b 100755 --- a/zb-cleanup +++ b/zb-cleanup @@ -1,7 +1,7 @@ #!/bin/bash if [[ -z "$1" || -z "$2" ]] ; then - echo "usage: $0 " >&2 + echo "usage: $0 " >&2 exit 1 fi @@ -30,7 +30,7 @@ done |sort -n | while read l ; do fi #if it's too dense, delete the closer snapshot - if [ $(( $density*($curtime-$lasttime)/($timenow-$lasttime) )) -lt 1] + if [ $(( $density*($curtime-$lasttime)/($timenow-$lasttime) )) -lt 100 ] then zfs destroy "$snapname" else