mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
80 lines
2.7 KiB
Bash
80 lines
2.7 KiB
Bash
#!/bin/sh
|
|
|
|
# Copyright (C) 2013 Red Hat, Inc. All rights reserved.
|
|
#
|
|
# This copyrighted material is made available to anyone wishing to use,
|
|
# modify, copy, or redistribute it subject to the terms and conditions
|
|
# of the GNU General Public License v.2.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
# test basic profile functionality
|
|
#
|
|
|
|
. lib/test
|
|
|
|
MSG_FAILED_TO_APPLY_PROFILE="Failed to apply configuration profile"
|
|
MSG_IGNORING_INVALID_PROFILE="Ignoring invalid configuration profile"
|
|
MSG_NOT_PROFILABLE="not customizable by a profile"
|
|
|
|
# fail if the profile requested by --profile cmdline option is not present
|
|
not pvs --profile nonexistent 2>&1 | grep "$MSG_FAILED_TO_APPLY_PROFILE"
|
|
|
|
# config/checks=1: warning message about setting not being profilable +
|
|
# summary error message about invalid profile
|
|
# config/checks=0: just summary error message about invalid profile
|
|
aux profileconf invalid 'log/prefix=" "'
|
|
|
|
aux lvmconf 'config/checks = 0'
|
|
pvs --profile invalid 2>msg
|
|
not grep "$MSG_NOT_PROFILABLE" msg
|
|
grep "$MSG_IGNORING_INVALID_PROFILE" msg
|
|
|
|
aux lvmconf 'config/checks = 1'
|
|
pvs --profile invalid 2>msg
|
|
grep "$MSG_NOT_PROFILABLE" msg
|
|
grep "$MSG_IGNORING_INVALID_PROFILE" msg
|
|
|
|
aux lvmconf 'allocation/thin_pool_zero = 1'
|
|
|
|
# all profilable items listed here - should pass
|
|
aux profileconf valid 'allocation/thin_pool_zero = 0' \
|
|
'allocation/thin_pool_discards = "passdown"' \
|
|
'allocation/thin_pool_chunk_size = 64'\
|
|
'activation/thin_pool_autoextend_threshold = 100' \
|
|
'activation/thin_pool_autoextend_percent = 20'
|
|
|
|
aux profileconf extra 'allocation/thin_pool_chunk_size = 128'
|
|
|
|
pvs --profile valid 2>msg
|
|
not grep "$MSG_NOT_PROFILABLE" msg
|
|
not grep "$MSG_IGNORING_INVALID_PROFILE" msg
|
|
|
|
# attaching/detaching profiles to VG/LV
|
|
aux prepare_pvs 1 8
|
|
pvcreate "$dev1"
|
|
vgcreate $vg1 "$dev1"
|
|
check vg_field $vg1 vg_profile ""
|
|
lvcreate -l 1 -n $lv1 $vg1
|
|
check lv_field $vg1/$lv1 lv_profile ""
|
|
vgchange --profile valid $vg1
|
|
check vg_field $vg1 vg_profile valid
|
|
check lv_field $vg1/$lv1 lv_profile ""
|
|
lvchange --profile extra $vg1/$lv1
|
|
check vg_field $vg1 vg_profile valid
|
|
check lv_field $vg1/$lv1 lv_profile extra
|
|
vgchange --detachprofile $vg1
|
|
check vg_field $vg1 vg_profile ""
|
|
check lv_field $vg1/$lv1 lv_profile extra
|
|
lvchange --detachprofile $vg1/$lv1
|
|
check vg_field $vg1 vg_profile ""
|
|
check lv_field $vg1/$lv1 lv_profile ""
|
|
|
|
# dumpconfig and merged lvm.conf + profile
|
|
lvm dumpconfig &>out
|
|
grep 'thin_pool_zero=1' out
|
|
lvm dumpconfig --profile valid --mergedconfig >out
|
|
grep 'thin_pool_zero=0' out
|