We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d634314 commit a7dfdf6Copy full SHA for a7dfdf6
test/TEST-04-FULL-SYSTEMD/test.sh
@@ -82,6 +82,8 @@ test_setup() {
82
inst_simple ./fstab /etc/fstab
83
if type -P rpm &> /dev/null; then
84
rpm -ql systemd | xargs -r "$DRACUT_INSTALL" ${initdir:+-D "$initdir"} -o -a -l
85
+ elif type -P dpkg &> /dev/null; then
86
+ dpkg -L systemd | xargs -r "$DRACUT_INSTALL" ${initdir:+-D "$initdir"} -o -a -l
87
elif type -P pacman &> /dev/null; then
88
pacman -Q -l systemd | while read -r _ a; do printf -- "%s\0" "$a"; done | xargs -0 -r "$DRACUT_INSTALL" ${initdir:+-D "$initdir"} -o -a -l
89
rm "$initdir"/usr/lib/systemd/system/sysinit.target.wants/systemd-firstboot.service
0 commit comments