Procházet zdrojové kódy

dracut/services: do not enable agetty on serial by default.

Juan RP před 10 roky
rodič
revize
45ea7a94e3
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      dracut/services.sh

+ 1 - 1
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