aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKablersalat <crt@adastra7.net>2025-02-24 19:21:20 +0100
committerKablersalat <crt@adastra7.net>2025-02-24 19:21:20 +0100
commit1a0c37354d7d3140eeda56d7ae07af9a42bf42c5 (patch)
tree296fd9510fde1b5a5c8d51ccc728b66b1573db40
parent6173adc152c70ce26de07a12d2ec177c127fd3ae (diff)
whoopsi
-rw-r--r--installer.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/installer.sh b/installer.sh
index 6c416be..4fa2bd4 100644
--- a/installer.sh
+++ b/installer.sh
@@ -60,7 +60,9 @@ EOF
# Function to configure automatic sign-in
configure_autologin() {
- dialog --title "Automatic Login Configuration" --msgbox "Configuring automatic login..." 10 50
+ if [[ $1 != "--auto" ]]; then
+ dialog --title "Automatic Login Configuration" --msgbox "Configuring automatic login..." 10 50
+ fi
sudo mkdir -p /etc/systemd/system/getty@tty1.service.d
sudo bash -c "cat > /etc/systemd/system/getty@tty1.service.d/autologin.conf << 'EOF'
[Service]
@@ -202,7 +204,7 @@ if [[ $1 == "--auto" ]]; then
[[ $distro == "raspberry" ]] && install_packages_raspberry
configure_xinitrc
configure_start_sh $scaling_factor $vnc_password "$@"
- configure_autologin
+ configure_autologin --auto
edit_bashrc
else
dialog --title "WARNING !!!" --msgbox "Do not run this script under any user other than 'kiosk' and make sure the Kiosk user has sudo rights for the duration of the installation. In addition, check out the -h command on this script if you wish to do the installation more automated!" 10 50