From 2260aa12fbc2e2899b553c273c7472d96716b7b5 Mon Sep 17 00:00:00 2001 From: Bernhard Landauer Date: Mon, 26 Dec 2016 21:29:26 +0100 Subject: [PATCH] set target install autologin default to 'false - cuttently we apply the setting intended for the live-session, which is 'true' I think that's not what we intend for the target install --- lib/util-yaml.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util-yaml.sh b/lib/util-yaml.sh index da8233d..27f8b49 100644 --- a/lib/util-yaml.sh +++ b/lib/util-yaml.sh @@ -153,7 +153,7 @@ write_users_conf(){ done unset IFS echo "autologinGroup: autologin" >> "$conf" - echo "doAutologin: ${autologin}" >> "$conf" + echo "doAutologin: false" >> "$conf" echo "sudoersGroup: wheel" >> "$conf" echo "setRootPassword: false" >> "$conf" echo "availableShells: /bin/bash, /bin/zsh" >> "$conf"