add hash generation hint to comments
This commit is contained in:
@@ -73,8 +73,8 @@ d-i netcfg/choose_interface select auto
|
|||||||
# Any hostname and domain names assigned from dhcp take precedence over
|
# Any hostname and domain names assigned from dhcp take precedence over
|
||||||
# values set here. However, setting the values still prevents the questions
|
# values set here. However, setting the values still prevents the questions
|
||||||
# from being shown, even if values come from dhcp.
|
# from being shown, even if values come from dhcp.
|
||||||
d-i netcfg/get_hostname string srv-test-0
|
d-i netcfg/get_hostname string my-debian-machine
|
||||||
d-i netcfg/get_domain string skyforest.net
|
d-i netcfg/get_domain string example.com
|
||||||
|
|
||||||
# If you want to force a hostname, regardless of what either the DHCP
|
# If you want to force a hostname, regardless of what either the DHCP
|
||||||
# server returns or what the reverse DNS entry for the IP is, uncomment
|
# server returns or what the reverse DNS entry for the IP is, uncomment
|
||||||
@@ -126,16 +126,17 @@ d-i mirror/http/proxy string
|
|||||||
#d-i passwd/root-password password r00tme
|
#d-i passwd/root-password password r00tme
|
||||||
#d-i passwd/root-password-again password r00tme
|
#d-i passwd/root-password-again password r00tme
|
||||||
# or encrypted using a crypt(3) hash.
|
# or encrypted using a crypt(3) hash.
|
||||||
d-i passwd/root-password-crypted password SOME-HASH-HERE
|
# generate using: python3 -c 'import crypt, getpass; print(crypt.crypt(getpass.getpass(), crypt.METHOD_SHA512))'
|
||||||
|
d-i passwd/root-password-crypted password $6$ejIby666HDLKIcgq$SthCbLDIgPlQZb/DNB0XOdgXTYGJIx5cu4qqSAH/KiyFEsDPKWTzyUipqu3TcsMziBo5WxiavPO.a0j8qW2ZY/
|
||||||
|
|
||||||
# To create a normal user account.
|
# To create a normal user account.
|
||||||
d-i passwd/user-fullname string KHN Administrator
|
d-i passwd/user-fullname string John Doe
|
||||||
d-i passwd/username string administrator
|
d-i passwd/username string administrator
|
||||||
# Normal user's password, either in clear text
|
# Normal user's password, either in clear text
|
||||||
#d-i passwd/user-password password insecure
|
#d-i passwd/user-password password insecure
|
||||||
#d-i passwd/user-password-again password insecure
|
#d-i passwd/user-password-again password insecure
|
||||||
# or encrypted using a crypt(3) hash.
|
# or encrypted using a crypt(3) hash.
|
||||||
d-i passwd/user-password-crypted password SOME-HASH-HERE
|
d-i passwd/user-password-crypted password $6$ejIby666HDLKIcgq$SthCbLDIgPlQZb/DNB0XOdgXTYGJIx5cu4qqSAH/KiyFEsDPKWTzyUipqu3TcsMziBo5WxiavPO.a0j8qW2ZY/
|
||||||
# Create the first user with the specified UID instead of the default.
|
# Create the first user with the specified UID instead of the default.
|
||||||
#d-i passwd/user-uid string 1010
|
#d-i passwd/user-uid string 1010
|
||||||
|
|
||||||
@@ -149,7 +150,7 @@ d-i clock-setup/utc boolean true
|
|||||||
|
|
||||||
# You may set this to any valid setting for $TZ; see the contents of
|
# You may set this to any valid setting for $TZ; see the contents of
|
||||||
# /usr/share/zoneinfo/ for valid values.
|
# /usr/share/zoneinfo/ for valid values.
|
||||||
d-i time/zone string Europe/Berlin
|
d-i time/zone string Europe/Amsterdam
|
||||||
|
|
||||||
# Controls whether to use NTP to set the clock during the install
|
# Controls whether to use NTP to set the clock during the install
|
||||||
d-i clock-setup/ntp boolean true
|
d-i clock-setup/ntp boolean true
|
||||||
|
|||||||
Reference in New Issue
Block a user