[+] Add autologin

This commit is contained in:
Simon Rieger 2022-10-06 21:01:04 +02:00
parent 3be80fee9e
commit 1a63fe11e9

View file

@ -667,6 +667,11 @@ mkinitcpio -P -c /etc/mkinitcpio.conf
echo "Erstelle Packetverzeichnis!!!" echo "Erstelle Packetverzeichnis!!!"
if [ "${archisoinstall}" == "y" ]; then if [ "${archisoinstall}" == "y" ]; then
mkdir -p ${mountpoint}/etc/systemd/system/getty\@tty1.service.d/
echo "[Service]" > ${mountpoint}/etc/systemd/system/getty\@tty1.service.d/autologin.conf
echo "ExecStart=" >> ${mountpoint}/etc/systemd/system/getty\@tty1.service.d/autologin.conf
echo "ExecStart=-/usr/bin/agetty --autologin ${user} -s %I 115200,38400,9600 vt102" >> ${mountpoint}/etc/systemd/system/getty\@tty1.service.d/autologin.conf
pacman -Qq > /pkglist.txt pacman -Qq > /pkglist.txt
if [ $(ls /var/cache/pacman/pkg | wc -w) -gt 0 ]; then if [ $(ls /var/cache/pacman/pkg | wc -w) -gt 0 ]; then
rm -R /var/cache/pacman/pkg/* rm -R /var/cache/pacman/pkg/*