From 3496b1b412f31624e80f01b4e0b0b4d9a14167aa Mon Sep 17 00:00:00 2001 From: Robert Nelson Date: Fri, 28 Feb 2020 11:04:14 -0600 Subject: [PATCH] stretch+: preseed: sync more defaults, let users define time/zone Signed-off-by: Robert Nelson --- lib/buster-preseed.cfg | 43 +++++++++++++++++++++++++++++++++++++++++ lib/stretch-preseed.cfg | 43 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) diff --git a/lib/buster-preseed.cfg b/lib/buster-preseed.cfg index 27989a7..69e8c19 100644 --- a/lib/buster-preseed.cfg +++ b/lib/buster-preseed.cfg @@ -107,6 +107,49 @@ d-i netcfg/wireless_wep string #d-i mirror/http/proxy string #RCNEE: ^ +# Suite to install. +#d-i mirror/suite string testing +# Suite to use for loading installer components (optional). +#d-i mirror/udeb/suite string testing + +### Account setup +# Skip creation of a root account (normal user account will be able to +# use sudo). +#d-i passwd/root-login boolean false +# Alternatively, to skip creation of a normal user account. +#d-i passwd/make-user boolean false + +# Root password, either in clear text +#d-i passwd/root-password password r00tme +#d-i passwd/root-password-again password r00tme +# or encrypted using a crypt(3) hash. +#d-i passwd/root-password-crypted password [crypt(3) hash] + +# To create a normal user account. +#d-i passwd/user-fullname string Debian User +#d-i passwd/username string debian +# Normal user's password, either in clear text +#d-i passwd/user-password password insecure +#d-i passwd/user-password-again password insecure +# or encrypted using a crypt(3) hash. +#d-i passwd/user-password-crypted password [crypt(3) hash] +# Create the first user with the specified UID instead of the default. +#d-i passwd/user-uid string 1010 + +# The user account will be added to some standard initial groups. To +# override that, use this. +#d-i passwd/user-default-groups string audio cdrom video + +### Clock and time zone setup +# Controls whether or not the hardware clock is set to UTC. +d-i clock-setup/utc boolean true + +# You may set this to any valid setting for $TZ; see the contents of +# /usr/share/zoneinfo/ for valid values. +#RCNEE: disable these defaults so users can specify them +#d-i time/zone string US/Eastern +#RCNEE: ^ + #Removes the prompt about missing modules: # Continue without installing a kernel? d-i base-installer/kernel/skip-install boolean true diff --git a/lib/stretch-preseed.cfg b/lib/stretch-preseed.cfg index c767d93..13454ef 100644 --- a/lib/stretch-preseed.cfg +++ b/lib/stretch-preseed.cfg @@ -107,6 +107,49 @@ d-i netcfg/wireless_wep string #d-i mirror/http/proxy string #RCNEE: ^ +# Suite to install. +#d-i mirror/suite string testing +# Suite to use for loading installer components (optional). +#d-i mirror/udeb/suite string testing + +### Account setup +# Skip creation of a root account (normal user account will be able to +# use sudo). +#d-i passwd/root-login boolean false +# Alternatively, to skip creation of a normal user account. +#d-i passwd/make-user boolean false + +# Root password, either in clear text +#d-i passwd/root-password password r00tme +#d-i passwd/root-password-again password r00tme +# or encrypted using a crypt(3) hash. +#d-i passwd/root-password-crypted password [crypt(3) hash] + +# To create a normal user account. +#d-i passwd/user-fullname string Debian User +#d-i passwd/username string debian +# Normal user's password, either in clear text +#d-i passwd/user-password password insecure +#d-i passwd/user-password-again password insecure +# or encrypted using a crypt(3) hash. +#d-i passwd/user-password-crypted password [crypt(3) hash] +# Create the first user with the specified UID instead of the default. +#d-i passwd/user-uid string 1010 + +# The user account will be added to some standard initial groups. To +# override that, use this. +#d-i passwd/user-default-groups string audio cdrom video + +### Clock and time zone setup +# Controls whether or not the hardware clock is set to UTC. +d-i clock-setup/utc boolean true + +# You may set this to any valid setting for $TZ; see the contents of +# /usr/share/zoneinfo/ for valid values. +#RCNEE: disable these defaults so users can specify them +#d-i time/zone string US/Eastern +#RCNEE: ^ + #Removes the prompt about missing modules: # Continue without installing a kernel? d-i base-installer/kernel/skip-install boolean true