From 3f08d533f25120d1df5d607ab38d759b701e981b Mon Sep 17 00:00:00 2001 From: "Alan J. Pippin" Date: Sat, 17 Jan 2009 00:10:28 -0700 Subject: [PATCH] Fixed typo --- zfs-snapshot-totals-cron | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/zfs-snapshot-totals-cron b/zfs-snapshot-totals-cron index d9c85ef..7ac2f55 100755 --- a/zfs-snapshot-totals-cron +++ b/zfs-snapshot-totals-cron @@ -1,5 +1,10 @@ #!/bin/bash +# Place this script in your crontab to run daily. +# It produces a log file that can be parsed by the +# zfs-log-parser script to display a nice table +# showing how much space the snapshots are taking up. + # source our configuration config="${0%/*}/zfs-scripts.conf" [ -e "${config}.dist" ] && . ${config}.dist @@ -8,6 +13,6 @@ config="${0%/*}/zfs-scripts.conf" logfile="$logdir/zfs-snapshot-totals.log" date >> $logfile -zfs-snapshot_totals >> $logfile +zfs-snapshot-totals >> $logfile echo >> $logfile -- 2.34.1