-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlvcheck.conf
46 lines (33 loc) · 1.26 KB
/
lvcheck.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/sh
# lvcheck configuration file
# This file follows the pattern of sshd_config: default
# values are shown here, commented-out.
# EMAIL
# Address to send failure notifications to. If empty,
# failure notifications will not be sent.
#EMAIL='root'
# 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 filesystem superblock.
#INTERVAL=30
# AC_UNKNOWN
# Whether to run the *fsck 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.
#AC_UNKNOWN="CONTINUE"
# MINSNAP
# Minimum snapshot size to take, in megabytes. The
# default snapshot size is 1/500 the size of the logical
# volume, but if that size is less than MINSNAP, the
# script will use MINSNAP instead. This should be large
# enough to handle e.g. journal updates, and other disk
# changes that require (semi-)constant space.
#MINSNAP=256
# MINFREE
# Minimum amount of space (in megabytes) to keep free in
# each volume group when creating snapshots.
#MINFREE=0