From: Alan J. Pippin <ajp@pippins.net>
Date: Sat, 17 Jan 2009 07:10:28 +0000 (-0700)
Subject: Fixed typo
X-Git-Url: http://git.pippins.net/%7Beqpres_ppi_link%7D?a=commitdiff_plain;h=3f08d533f25120d1df5d607ab38d759b701e981b;p=zfs-ubuntu%2F.git

Fixed typo
---

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