#!/bin/sh # e2check configuration variables: # # EMAIL # Address to send failure notifications to. If empty, # failure notifications will not be sent. # # INTERVAL # Days to wait between checks. All LVs use the same # INTERVAL, but the "days since last check" value can # be different per LV, since that value is stored in # the ext2/ext3 superblock. # # DEFAULT_SNAPSIZE # Default snapshot size to use if none is specified # in the options field in /etc/fstab (using the custom # SNAPSIZE=xxx option) for any LV. Valid values are # anything that the -L option to lvcreate will accept. # # AC_UNKNOWN # Whether to run the e2fsck checks if the script can't # determine whether the machine is on AC power. Laptop # users will want to set this to ABORT, while server and # desktop users will probably want to set this to # CONTINUE. Those are the only two valid values. EMAIL='root' INTERVAL=30 DEFAULT_SNAPSIZE=100m AC_UNKNOWN="ABORT"