dracut/adduser.sh: no need to remove pam_systemd with runit anymore.

This commit is contained in:
Juan RP 2014-06-20 10:29:06 +02:00
parent 1fcbe4e2e9
commit b54cdb22e7
1 changed files with 1 additions and 2 deletions

View File

@ -25,10 +25,9 @@ if [ -f ${NEWROOT}/etc/sudoers ]; then
echo "${USERNAME} ALL=(ALL) NOPASSWD: ALL" >> ${NEWROOT}/etc/sudoers
fi
# Enable autologin for agetty(8) on tty1 and disable pam_systemd.
# Enable autologin for agetty(8) on tty1 with runit.
if [ -d ${NEWROOT}/etc/runit ]; then
sed -e "s|\-8|& -a $USERNAME|g" -i ${NEWROOT}/etc/sv/agetty-tty1/run
sed -e '/systemd/d' -i ${NEWROOT}/etc/pam.d/*
fi
# Enable autologin for agetty(8) on tty1 with systemd.