Browse Source

dracut/vmklive-adduser.sh: strip --noclear from getty@.service.

Juan RP 13 years ago
parent
commit
2ef7a175c0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dracut/vmklive-adduser.sh

+ 1 - 1
dracut/vmklive-adduser.sh

@@ -21,7 +21,7 @@ fi
 # Enable autologin for getty(1).
 if [ -f ${NEWROOT}/lib/systemd/system/getty@.service ]; then
         rm -f "${NEWROOT}/etc/systemd/system/getty.target.wants/getty@tty1.service"
-	sed -e "s|/sbin/agetty|/sbin/live-getty|g" \
+	sed -e "s|/sbin/agetty --noclear|/sbin/live-getty|g" \
                 "${NEWROOT}/lib/systemd/system/getty@.service" > \
                 "${NEWROOT}/etc/systemd/system/getty.target.wants/getty@tty1.service"
 fi