diff options
Diffstat (limited to 'dracut')
-rw-r--r-- | dracut/services.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dracut/services.sh b/dracut/services.sh index f0f1eef..c5276b6 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) ;; # ignored + agetty-console|agetty-generic|agetty-serial|agetty-tty[SAU]*|sulogin|dhcpcd-*|iptables|ip6tables|wpa_supplicant) ;; # ignored dhcpcd) [ -n "$dhcpcd" ] && ln -sf ${f##$NEWROOT} $NEWROOT/etc/runit/runsvdir/default/;; *) ln -sf ${f##$NEWROOT} $NEWROOT/etc/runit/runsvdir/default/;; esac |