about summary refs log tree commit diff
path: root/dracut
diff options
context:
space:
mode:
authorJuan RP <xtraeme@gmail.com>2015-02-14 11:40:57 +0100
committerJuan RP <xtraeme@gmail.com>2015-02-14 11:40:57 +0100
commit45ea7a94e3ec6d0ad2f94f5c08fa1a705fe89be6 (patch)
tree4ddccbed3686cea948e37a1b69b4434edea14df7 /dracut
parentc332eae7819948a3b94062647a9539dd1a9f5087 (diff)
downloadhrmpf-45ea7a94e3ec6d0ad2f94f5c08fa1a705fe89be6.tar.gz
hrmpf-45ea7a94e3ec6d0ad2f94f5c08fa1a705fe89be6.tar.xz
hrmpf-45ea7a94e3ec6d0ad2f94f5c08fa1a705fe89be6.zip
dracut/services: do not enable agetty on serial by default.
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 bf6c55c..f0f1eef 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|sulogin|dhcpcd-*|iptables|ip6tables) ;; # ignored
+        agetty-console|agetty-generic|agetty-serial|agetty-tty[SAU]*|sulogin|dhcpcd-*|iptables|ip6tables) ;; # ignored
         dhcpcd) [ -n "$dhcpcd" ] && ln -sf ${f##$NEWROOT} $NEWROOT/etc/runit/runsvdir/default/;;
         *) ln -sf ${f##$NEWROOT} $NEWROOT/etc/runit/runsvdir/default/;;
     esac