tinyramfs/hooks/lvm/lvm.init

27 lines
631 B
Plaintext
Raw Normal View History

# vim: set ft=sh:
2020-07-03 21:19:09 +05:30
# shellcheck shell=sh
#
# false positive
# shellcheck disable=2154
#
# word splitting is safe by design
# shellcheck disable=2068
2020-09-11 01:23:39 +05:30
[ "$break" = lvm ] && { print "break before lvm.init"; sh; }
2020-09-11 01:23:39 +05:30
export DM_DISABLE_UDEV=1
mkdir -p /run/lvm /run/lock/lvm
2020-09-11 01:23:39 +05:30
set -- \
--sysinit -qq -aay "${lvm_discard:+--config=devices\{issue_discards=1\}}"
2020-09-11 01:23:39 +05:30
if [ "$lvm_group" ] && [ "$lvm_name" ]; then
lvm lvchange $@ "${lvm_group}/${lvm_name}"
elif [ "$lvm_group" ]; then
lvm vgchange $@ "$lvm_group"
elif [ "$lvm_tag" ]; then
lvm lvchange $@ "@${lvm_tag}"
else
lvm vgchange $@
fi || panic "failed to trigger LVM"