about summary refs log tree commit diff
path: root/dracut
diff options
context:
space:
mode:
authorJuan RP <xtraeme@voidlinux.eu>2015-10-09 09:05:24 +0200
committerJuan RP <xtraeme@voidlinux.eu>2015-10-09 09:05:24 +0200
commitcb2510b3791091fb54681cee451eb7ec24e0b266 (patch)
tree4aaa0c54cfd226b02367a0d6021990fe181d74f2 /dracut
parent0bdf5c6c361a55e609c2b141d47263278ac33e75 (diff)
downloadhrmpf-cb2510b3791091fb54681cee451eb7ec24e0b266.tar.gz
hrmpf-cb2510b3791091fb54681cee451eb7ec24e0b266.tar.xz
hrmpf-cb2510b3791091fb54681cee451eb7ec24e0b266.zip
dracut/services: don't autostart dmeventd, lvmetad and mdadm.
Diffstat (limited to 'dracut')
-rw-r--r--dracut/services.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/dracut/services.sh b/dracut/services.sh
index d761416..50461ff 100644
--- a/dracut/services.sh
+++ b/dracut/services.sh
@@ -22,7 +22,7 @@ done
 for f in $SERVICEDIR/*; do
     _service=${f##*/}
     case "${_service}" in
-        agetty-console|agetty-generic|agetty-serial|agetty-tty[SAU]*|sulogin|dhcpcd-*|iptables|ip6tables|wpa_supplicant|pulseaudio) ;; # ignored
+        agetty-console|agetty-generic|agetty-serial|agetty-tty[SAU]*|sulogin|dhcpcd-*|iptables|ip6tables|wpa_supplicant|pulseaudio|lvmetad|dmeventd|mdadm) ;; # ignored
         dhcpcd) [ -n "$dhcpcd" ] && ln -sf ${f##$NEWROOT} $NEWROOT/etc/runit/runsvdir/default/;;
         *) ln -sf ${f##$NEWROOT} $NEWROOT/etc/runit/runsvdir/default/;;
     esac