[+] Add autologin
This commit is contained in:
parent
3be80fee9e
commit
1a63fe11e9
1 changed files with 5 additions and 0 deletions
|
@ -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/*
|
||||||
|
|
Loading…
Reference in a new issue