#!/bin/sh # Configuration variables: # EMAIL # address to send failure notifications to (if empty, # failure notifications will not be sent) # VGS # array of volume groups to check # VOLUMES # array of logical volumes to check, one for each # volume group listed in VGS # SNAPSIZES # size of each LVM snapshot (any string accepted by # the -L option to lvcreate is valid), one for each # volume group listed in VGS # INTERVALS # days to wait between checks, one for each volume # group listed in VGS EMAIL='tytso@mit.edu' VGS=(closure closure) VOLUMES=(root home) SNAPSIZES=(100m 100m) INTERVALS=(30 30)