From 8e81f4c82dc3a61821278f5dbc38dc3a0ca421a1 Mon Sep 17 00:00:00 2001 From: Simon Dellenbach Date: Fri, 26 Jun 2026 16:14:25 +0200 Subject: [PATCH] Use config file. Root password must be set, otherwise it will always prompt and never install the root ssh key. User creation fails on Debian 14 (Forky) because it does not contain adduser (only useradd). It will hang until rebooted. And because of that hang, the timezone is also not applied. --- .gitattributes | 1 + opi-six.config | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 opi-six.config diff --git a/.gitattributes b/.gitattributes index 3bb6eda..4a696d8 100644 --- a/.gitattributes +++ b/.gitattributes @@ -5,6 +5,7 @@ *.sh text eol=lf *.keys text eol=lf *.pub text eol=lf +*.config text eol=lf *.txt text eol=lf *.md text eol=lf diff --git a/opi-six.config b/opi-six.config new file mode 100644 index 0000000..e39762d --- /dev/null +++ b/opi-six.config @@ -0,0 +1,7 @@ +PRESET_NET_CHANGE_DEFAULTS="1" +PRESET_NET_ETHERNET_ENABLED="1" +PRESET_LOCALE="en_US.UTF-8" +PRESET_TIMEZONE="Europe/Zurich" +PRESET_ROOT_PASSWORD="" +PRESET_ROOT_KEY="https://gitea.dellenba.ch/infra/public_keys/raw/branch/main/root@opi-six.pub" +SET_LANG_BASED_ON_LOCATION=n