Correct indentation in Wheezy preseed.
This commit is contained in:
parent
0d40589e60
commit
b64a8648fe
|
@ -44,8 +44,8 @@ d-i netcfg/link_detection_timeout string 20
|
||||||
|
|
||||||
# If you have a slow dhcp server and the installer times out waiting for
|
# If you have a slow dhcp server and the installer times out waiting for
|
||||||
# it, this might be useful.
|
# it, this might be useful.
|
||||||
d-i netcfg/dhcp_timeout string 60
|
d-i netcfg/dhcp_timeout string 60
|
||||||
d-i netcfg/dhcpv6_timeout string 60
|
d-i netcfg/dhcpv6_timeout string 60
|
||||||
|
|
||||||
## Network Configuration
|
## Network Configuration
|
||||||
d-i netcfg/get_hostname string myhostname
|
d-i netcfg/get_hostname string myhostname
|
||||||
|
@ -76,25 +76,26 @@ d-i mirror/suite string
|
||||||
## Account
|
## Account
|
||||||
#####################################################################
|
#####################################################################
|
||||||
# Allow login as root?
|
# Allow login as root?
|
||||||
user-setup-udeb passwd/root-login boolean true
|
user-setup-udeb passwd/root-login boolean true
|
||||||
# Root password in clear text
|
# Root password in clear text
|
||||||
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 with MD5 hash
|
# ... or encrypted with MD5 hash
|
||||||
#d-i passwd/root-password-crypted password $1t.ta/19E8.0À9..ats.sar.jaruiv138e
|
# with `printf "r00tme" | mkpasswd -s -m md5`
|
||||||
|
#d-i passwd/root-password-crypted password $1t.ta/19E8.0À9..ats.sar.jaruiv138e
|
||||||
|
|
||||||
# Create a normal user account now?
|
# Create a normal user account now?
|
||||||
user-setup-udeb passwd/make-user boolean true
|
user-setup-udeb passwd/make-user boolean false
|
||||||
# User name
|
## User name
|
||||||
d-i passwd/user-fullname string bob
|
#d-i passwd/user-fullname string bob
|
||||||
d-i passwd/username string bob
|
#d-i passwd/username string bob
|
||||||
# User password in clear text
|
## User password 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 with MD5 hash
|
## ... or encrypted with MD5 hash
|
||||||
#d-i passwd/user-password-crypted password $1$098f6bcd4621d373cade4e832627b4f6
|
##d-i passwd/user-password-crypted password $1$098f6bcd4621d373cade4e832627b4f6
|
||||||
# Set User UID
|
## Set User UID
|
||||||
d-i passwd/user-uid string 1000
|
#d-i passwd/user-uid string 1000
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -281,34 +282,34 @@ d-i apt-setup/non-free boolean true
|
||||||
d-i apt-setup/contrib boolean true
|
d-i apt-setup/contrib boolean true
|
||||||
|
|
||||||
# Additional repositories, local[0-9] available
|
# Additional repositories, local[0-9] available
|
||||||
d-i apt-setup/local0/repository string \
|
d-i apt-setup/local0/repository string \
|
||||||
http://apt.puppetlabs.com wheezy main dependencies
|
http://apt.puppetlabs.com wheezy main dependencies
|
||||||
#d-i apt-setup/local0/comment string local server
|
#d-i apt-setup/local0/comment string local server
|
||||||
# Enable deb-src lines
|
# Enable deb-src lines
|
||||||
d-i apt-setup/local0/source boolean true
|
d-i apt-setup/local0/source boolean true
|
||||||
# URL to the public key of the local repository; you must provide a key or
|
# URL to the public key of the local repository; you must provide a key or
|
||||||
# apt will complain about the unauthenticated repository and so the
|
# apt will complain about the unauthenticated repository and so the
|
||||||
# sources.list line will be left commented out
|
# sources.list line will be left commented out
|
||||||
#d-i apt-setup/local0/key string http://local.server/key
|
#d-i apt-setup/local0/key string http://local.server/key
|
||||||
d-i apt-setup/local0/key string http://apt.puppetlabs.com/pubkey.gpg
|
d-i apt-setup/local0/key string http://apt.puppetlabs.com/pubkey.gpg
|
||||||
|
|
||||||
# By default the installer requires that repositories be authenticated
|
# By default the installer requires that repositories be authenticated
|
||||||
# using a known gpg key. This setting can be used to disable that
|
# using a known gpg key. This setting can be used to disable that
|
||||||
# authentication. Warning: Insecure, not recommended.
|
# authentication. Warning: Insecure, not recommended.
|
||||||
#d-i debian-installer/allow_unauthenticated string true
|
#d-i debian-installer/allow_unauthenticated string true
|
||||||
|
|
||||||
|
|
||||||
## Choose packages
|
## Choose packages
|
||||||
tasksel tasksel/first multiselect ssh-server standard
|
tasksel tasksel/first multiselect ssh-server standard
|
||||||
|
|
||||||
## Individual additional packages to install
|
## Individual additional packages to install
|
||||||
d-i pkgsel/include string tmux puppet zsh tftp-hpa
|
d-i pkgsel/include string tmux puppet zsh tftp-hpa
|
||||||
# Whether to upgrade packages after debootstrap.
|
# Whether to upgrade packages after debootstrap.
|
||||||
# Allowed values: none, safe-upgrade, full-upgrade
|
# Allowed values: none, safe-upgrade, full-upgrade
|
||||||
d-i pkgsel/upgrade select full-upgrade
|
d-i pkgsel/upgrade select full-upgrade
|
||||||
|
|
||||||
# Participate to Popularity Contest (disable for an unconnected server)
|
# Participate to Popularity Contest (disable for an unconnected server)
|
||||||
d-i popularity-contest/participate boolean false
|
d-i popularity-contest/participate boolean false
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue