From 2fc52b6c41172fc4ae15e736fae095aa681ff03a Mon Sep 17 00:00:00 2001 From: Marian Csontos Date: Tue, 9 Aug 2022 16:04:09 +0200 Subject: [PATCH] config: add correct unconfigured value for use_devicesfile --- conf/example.conf.in | 2 +- lib/config/config_settings.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/example.conf.in b/conf/example.conf.in index 4e5482fee..5fadeac12 100644 --- a/conf/example.conf.in +++ b/conf/example.conf.in @@ -126,7 +126,7 @@ devices { # be used, regardless of this setting, when the --devicesfile # option is set to a specific file name. # This configuration option has an automatic default value. - # use_devicesfile = 0 + # use_devicesfile = @DEFAULT_USE_DEVICES_FILE@ # Configuration option devices/devicesfile. # The name of the system devices file, listing devices that LVM should use. diff --git a/lib/config/config_settings.h b/lib/config/config_settings.h index e97e12152..d2811df2b 100644 --- a/lib/config/config_settings.h +++ b/lib/config/config_settings.h @@ -277,7 +277,7 @@ cfg_array(devices_preferred_names_CFG, "preferred_names", devices_CFG_SECTION, C "preferred_names = [ \"^/dev/mpath/\", \"^/dev/mapper/mpath\", \"^/dev/[hs]d\" ]\n" "#\n") -cfg(devices_use_devicesfile_CFG, "use_devicesfile", devices_CFG_SECTION, CFG_DEFAULT_COMMENTED, CFG_TYPE_BOOL, DEFAULT_USE_DEVICES_FILE, vsn(2, 3, 12), NULL, 0, NULL, +cfg(devices_use_devicesfile_CFG, "use_devicesfile", devices_CFG_SECTION, CFG_DEFAULT_COMMENTED, CFG_TYPE_BOOL, DEFAULT_USE_DEVICES_FILE, vsn(2, 3, 12), "@DEFAULT_USE_DEVICES_FILE@", 0, NULL, "Enable or disable the use of a devices file.\n" "When enabled, lvm will only use devices that\n" "are lised in the devices file. A devices file will\n"