about summary refs log tree commit diff
path: root/dracut
diff options
context:
space:
mode:
authorJuan RP <xtraeme@voidlinux.eu>2015-04-29 17:17:48 +0200
committerJuan RP <xtraeme@voidlinux.eu>2015-04-29 17:17:48 +0200
commit1c6321d1da4ff4c274803221eb0c2c217c0892ef (patch)
treef531e269ed4b25ce55d6bb3c319ca72161a41458 /dracut
parent749ed6c3c4fbd12ec3c33ca2f664562bf923acb9 (diff)
downloadhrmpf-1c6321d1da4ff4c274803221eb0c2c217c0892ef.tar.gz
hrmpf-1c6321d1da4ff4c274803221eb0c2c217c0892ef.tar.xz
hrmpf-1c6321d1da4ff4c274803221eb0c2c217c0892ef.zip
dracut/services: do not enable the pulseaudio service.
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 c5276b6..d761416 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) ;; # ignored
+        agetty-console|agetty-generic|agetty-serial|agetty-tty[SAU]*|sulogin|dhcpcd-*|iptables|ip6tables|wpa_supplicant|pulseaudio) ;; # ignored
         dhcpcd) [ -n "$dhcpcd" ] && ln -sf ${f##$NEWROOT} $NEWROOT/etc/runit/runsvdir/default/;;
         *) ln -sf ${f##$NEWROOT} $NEWROOT/etc/runit/runsvdir/default/;;
     esac