#!/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. # # 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 AC_UNKNOWN="ABORT"