2 Commits

Author SHA1 Message Date
Juan RP
9457e65391 Bump to 0.9.7. 2012-07-03 17:00:37 +02:00
Juan RP
2ef7a175c0 dracut/vmklive-adduser.sh: strip --noclear from getty@.service. 2012-07-03 16:57:05 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
VERSION = 0.9.6
VERSION = 0.9.7
SBINDIR ?= /usr/sbin
DRACUTMODDIR ?= /usr/lib/dracut/modules.d/01vmklive

View File

@@ -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