1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00
lvm2/lib/config
Peter Rajnoha 4388ab477c lvmconfig: comment out settings with proper space/tab prefix
We're commenting out settings with undefined default values.
The comment character '#' was printed at the very beginning of
the line, it should be placed just at the beginning of the setting,
after the space/tab prefix is printed.

Before this patch:

  $ lvmconfig --type default activation
  activation {
           ...
  #        volume_list=[]
           ...
  }

With this patch applied:

  $ lvmconfig --type default activation
  activation {
           ...
           # volume_list=[]
           ...
  }
2015-04-30 14:06:55 +02:00
..
config_settings.h config: consolidate CFG_UNSUPPORTED and CFG_ADVANCED settings 2015-04-29 16:31:47 +02:00
config.c lvmconfig: comment out settings with proper space/tab prefix 2015-04-30 14:06:55 +02:00
config.h config: consolidate CFG_UNSUPPORTED and CFG_ADVANCED settings 2015-04-29 16:31:47 +02:00
defaults.h config: fix check_options array 2015-04-23 10:35:34 -05:00