Add .gitignore file for git.
[virt-p2v.git] / lvm.conf
1 # Heavily customised lvm.conf for live CD.
2
3 devices {
4     dir = "/dev"
5     scan = [ "/dev" ]
6
7     # Set the filter so that only /dev/dm-* (device mapper) devices
8     # are scanned.
9     filter = [ "a|^/dev/dm-|", "r/.*/" ]
10
11     cache_dir = "/etc/lvm/cache"
12     cache_file_prefix = ""
13     write_cache_state = 1
14
15     # Allow device-mapper devices to be scanned, and disable
16     # block-device sanity checking.
17     types = [ "device-mapper", 16 ]
18     sysfs_scan = 0
19
20     md_component_detection = 1
21     ignore_suspended_devices = 0
22 }
23
24 log {
25     verbose = 0
26     syslog = 1
27     overwrite = 0
28     level = 0
29     indent = 1
30     command_names = 0
31     prefix = "  "
32 }
33
34 backup {
35     backup = 1
36     backup_dir = "/etc/lvm/backup"
37     archive = 1
38     archive_dir = "/etc/lvm/archive"
39     retain_min = 10
40     retain_days = 30
41 }
42
43 shell {
44     history_size = 100
45 }
46
47 global {
48     umask = 077
49     test = 0
50     units = "h"
51     activation = 1
52     proc = "/proc"
53     locking_type = 1
54     fallback_to_clustered_locking = 1
55     fallback_to_local_locking = 1
56     locking_dir = "/var/lock/lvm"
57 }
58
59 activation {
60     missing_stripe_filler = "/dev/ioerror"
61     reserved_stack = 256
62     reserved_memory = 8192
63     process_priority = -18
64     mirror_region_size = 512
65     mirror_log_fault_policy = "allocate"
66     mirror_device_fault_policy = "remove"
67 }
68
69 # This file must end with a newline
70