tests: fix TEST-02-CRYPTSETUP on Debian/Ubuntu

This commit is contained in:
Evgeny Vereshchagin 2016-01-17 03:32:37 +00:00
parent 9974ff63b1
commit ac289ce3f5
1 changed files with 7 additions and 1 deletions

View File

@ -159,7 +159,13 @@ install_dmevent() {
instmods dm_crypt =crypto
type -P dmeventd >/dev/null && dracut_install dmeventd
inst_libdir_file "libdevmapper-event.so*"
inst_rules 10-dm.rules 13-dm-disk.rules 95-dm-notify.rules
if [[ "$LOOKS_LIKE_DEBIAN" ]]; then
# dmsetup installs 55-dm and 60-persistent-storage-dm on Debian/Ubuntu
# see https://anonscm.debian.org/cgit/pkg-lvm/lvm2.git/tree/debian/patches/0007-udev.patch
inst_rules 55-dm.rules 60-persistent-storage-dm.rules
else
inst_rules 10-dm.rules 13-dm-disk.rules 95-dm-notify.rules
fi
}
install_systemd() {