dracut: misc tweaks.
This commit is contained in:
parent
a5d3e1fc9f
commit
997b3ca895
|
@ -12,18 +12,17 @@ echo "USERNAME=$USERNAME" >> ${NEWROOT}/etc/default/live.conf
|
||||||
chmod 644 ${NEWROOT}/etc/default/live.conf
|
chmod 644 ${NEWROOT}/etc/default/live.conf
|
||||||
|
|
||||||
# Create new user and remove password. We'll use autologin by default.
|
# Create new user and remove password. We'll use autologin by default.
|
||||||
chroot ${NEWROOT} useradd -c $USERNAME -m $USERNAME -G systemd-journal,wheel -s /bin/bash
|
chroot ${NEWROOT} useradd -c $USERNAME -m $USERNAME -G \
|
||||||
chroot ${NEWROOT} passwd -d $USERNAME 2>&1 >/dev/null
|
systemd-journal,wheel -s /bin/bash
|
||||||
|
chroot ${NEWROOT} passwd -d $USERNAME >/dev/null 2>&1
|
||||||
|
|
||||||
# Enable sudo permission by default.
|
# Enable sudo permission by default.
|
||||||
if [ -f ${NEWROOT}/etc/sudoers ]; then
|
if [ -f ${NEWROOT}/etc/sudoers ]; then
|
||||||
echo "${USERNAME} ALL=(ALL) NOPASSWD: ALL" >> ${NEWROOT}/etc/sudoers
|
echo "${USERNAME} ALL=(ALL) NOPASSWD: ALL" >> ${NEWROOT}/etc/sudoers
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Enable autologin for agetty(8).
|
# Enable autologin for agetty(8).
|
||||||
if [ -f ${NEWROOT}/usr/lib/systemd/system/getty@.service ]; then
|
rm -f "${NEWROOT}/etc/systemd/system/getty.target.wants/getty@tty1.service"
|
||||||
rm -f "${NEWROOT}/etc/systemd/system/getty.target.wants/getty@tty1.service"
|
sed -e "s|/sbin/agetty --noclear|& -a ${USERNAME}|g" \
|
||||||
sed -e "s|/sbin/agetty --noclear|& -a ${USERNAME}|g" \
|
"${NEWROOT}/usr/lib/systemd/system/getty@.service" > \
|
||||||
"${NEWROOT}/usr/lib/systemd/system/getty@.service" > \
|
"${NEWROOT}/etc/systemd/system/getty.target.wants/getty@tty1.service"
|
||||||
"${NEWROOT}/etc/systemd/system/getty.target.wants/getty@tty1.service"
|
|
||||||
fi
|
|
||||||
|
|
|
@ -11,6 +11,7 @@ depends() {
|
||||||
}
|
}
|
||||||
|
|
||||||
install() {
|
install() {
|
||||||
|
inst /usr/bin/chroot
|
||||||
inst /usr/bin/chmod
|
inst /usr/bin/chmod
|
||||||
inst /usr/bin/sed
|
inst /usr/bin/sed
|
||||||
inst /usr/sbin/depmod
|
inst /usr/sbin/depmod
|
||||||
|
|
Loading…
Reference in New Issue