Moved pool names to variable
authorAlan J. Pippin <ajp@pippins.net>
Sat, 10 Jan 2009 23:43:26 +0000 (16:43 -0700)
committerAlan J. Pippin <ajp@pippins.net>
Sat, 10 Jan 2009 23:43:26 +0000 (16:43 -0700)
zfs-scrub
zfs-scrub-ext-drive

index aff4a38ee5429f728e9772202d02f1322b7afce6..b82b90028a8b06accaae1e0e7dc5c5c8cb74583a 100755 (executable)
--- a/zfs-scrub
+++ b/zfs-scrub
@@ -8,10 +8,11 @@
 
 PATH=/usr/sbin:/sbin:$PATH
 
+pools="tank storage"
 maxsleeptime=360
 logfile=/var/log/zfs/zfs-scrub.log
 
-for i in tank storage
+for i in $pools
 do
   # Check to see if this zfs filesystem has a scrub being performed on it now.
   # If it does, we cannot perform more than one scrub operation at a time.
index b86dc5b4434793a3a535177f636ed4c63349a727..f3d5e987d4be0df757b74beac92d2b9255ff9c44 100755 (executable)
@@ -8,11 +8,12 @@
 
 PATH=/usr/sbin:/sbin:/etc/bin:$PATH
 
+pools="backups"
 maxsleeptime=360
 mailto=root
 logfile=/var/log/zfs/zfs-scrub.log
 
-for i in backups
+for i in $pools
 do
   # Check to see if any zfs filesystem has a scrub being performed on it now.
   # If it does, we cannot perform more than one scrub operation at a time.