1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

conf: refine lvm.conf documentation for autoactivation feature even more

This commit is contained in:
Peter Rajnoha 2013-06-14 12:35:06 +02:00
parent 19369cf7f3
commit 53b405093b

View File

@ -662,13 +662,20 @@ activation {
# In this case, the user calls "vgchange --activate ay/-a ay" or # In this case, the user calls "vgchange --activate ay/-a ay" or
# "lvchange --activate ay/-a ay" directly. # "lvchange --activate ay/-a ay" directly.
# #
# If the VG/LV being processed does not match the list, the VG/LV is not # By default, the auto_activation_volume_list is not defined and all
# activated. If auto_activation_volume_list is not set, then all volumes # volumes will be activated either automatically or by using --activate ay/-a ay.
# are activated by default.
# #
# N.B. The "activation/volume_list" is still honoured in all cases so even # N.B. The "activation/volume_list" is still honoured in all cases so even
# if the VG/LV passes the auto_activation_volume_list, it still needs to # if the VG/LV passes the auto_activation_volume_list, it still needs to
# pass the volume_list for it to be activated in the end. # pass the volume_list for it to be activated in the end.
# If auto_activation_volume_list is defined but empty, no volumes will be
# activated automatically and --activate ay/-a ay will do nothing.
#
# auto_activation_volume_list = []
# If auto_activation_volume_list is defined and it's not empty, only matching
# volumes will be activated either automatically or by using --activate ay/-a ay.
# #
# "vgname" and "vgname/lvname" are matched exactly. # "vgname" and "vgname/lvname" are matched exactly.
# "@tag" matches any tag set in the LV or VG. # "@tag" matches any tag set in the LV or VG.