about summary refs log tree commit diff
path: root/dracut
diff options
context:
space:
mode:
authorJuan RP <xtraeme@gmail.com>2015-01-25 08:38:18 +0100
committerJuan RP <xtraeme@gmail.com>2015-01-25 08:38:18 +0100
commit289136e02ee20247fbb2b6a1a8d07c331e86fd1a (patch)
treecc90218336b4621ce9f2f0938451840715186c47 /dracut
parent7dff7059c0ac2c6e303bbe3425c046f885ebb8ba (diff)
downloadhrmpf-289136e02ee20247fbb2b6a1a8d07c331e86fd1a.tar.gz
hrmpf-289136e02ee20247fbb2b6a1a8d07c331e86fd1a.tar.xz
hrmpf-289136e02ee20247fbb2b6a1a8d07c331e86fd1a.zip
dracut/services: do not enable agetty-serial.
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 9f9df65..bf6c55c 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|sulogin|dhcpcd-*|iptables|ip6tables) ;; # ignored
+        agetty-console|agetty-generic|agetty-serial|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