clc-debian/input.cfg

146 lines
5.2 KiB
INI
Raw Normal View History

2021-07-12 20:37:34 -04:00
### Localization
# Preseeding only locale sets language, country and locale.
d-i debian-installer/locale string en_US
# Keyboard selection.
d-i keyboard-configuration/xkb-keymap select us
### Network configuration
# netcfg will choose an interface that has link if possible. This makes it
# skip displaying a list if there is more than one interface.
d-i netcfg/choose_interface select auto
# Any hostname and domain names assigned from dhcp take precedence over
# values set here. However, setting the values still prevents the questions
# from being shown, even if values come from dhcp.
d-i netcfg/get_hostname string unassigned-hostname
d-i netcfg/get_domain string unassigned-domain
# 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
# and adjust the following line.
#d-i netcfg/hostname string somehost
# Disable that annoying WEP key dialog.
d-i netcfg/wireless_wep string
# If non-free firmware is needed for the network or other hardware, you can
# configure the installer to always try to load it, without prompting. Or
# change to false to disable asking.
d-i hw-detect/load_firmware boolean true
### Wifi settings
#d-i netcfg/wireless_essid CLC-Guest
#d-i netcfg/wireless_security_type wpa
#d-i netcfg/wireless_wpa OneChurch!
2021-07-12 20:37:34 -04:00
### Mirror settings
# If you select ftp, the mirror/country string does not need to be set.
#d-i mirror/protocol string ftp
d-i mirror/country string manual
d-i mirror/http/hostname string http.us.debian.org
d-i mirror/http/directory string /debian
d-i mirror/http/proxy string
### Account setup
# Root password
2021-07-13 08:35:52 -04:00
d-i passwd/root-password-crypted password @ROOTHASH
2021-07-12 20:37:34 -04:00
# To create a normal user account.
d-i passwd/user-fullname string CLC User
d-i passwd/username string clc
# Normal user's password
2021-07-13 08:35:52 -04:00
d-i passwd/user-password-crypted password @USERHASH
2021-07-12 20:37:34 -04:00
### 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.
d-i time/zone string US/Eastern
# Controls whether to use NTP to set the clock during the install
d-i clock-setup/ntp boolean true
### Partitioning
#Tell disk to use lvm and bypasss confirmations to clear previous lvm, raid.
2021-07-12 20:37:34 -04:00
d-i partman-auto/method string lvm
d-i partman-auto-lvm/guided_size string max
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-md/device_remove_md boolean true
d-i partman-lvm/confirm boolean true
d-i partman-lvm/confirm_nooverwrite boolean true
#Default partition map all files in one partition
2021-07-12 20:37:34 -04:00
d-i partman-auto/choose_recipe select atomic
#Tell partman to go without confirmation
2021-07-12 20:37:34 -04:00
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true
#Force UEFI
d-i partman-efi/non_efi_system boolean false
2021-07-12 20:37:34 -04:00
### Base system installation
### Apt setup
# You can choose to install non-free and contrib software.
d-i apt-setup/non-free boolean true
d-i apt-setup/contrib boolean true
### Package selection
#tasksel tasksel/first multiselect standard, gnome
2021-07-12 20:37:34 -04:00
# Individual additional packages to install
#d-i pkgsel/include string openssh-server build-essential
d-i pkgsel/include string firmware-iwlwifi openssh-server curl vlc timeshift
2021-07-12 20:37:34 -04:00
# Whether to upgrade packages after debootstrap.
# Allowed values: none, safe-upgrade, full-upgrade
#d-i pkgsel/upgrade select none
#Skip popularity contest
popularity-contest popularity-contest/participate boolean false
2021-07-12 20:37:34 -04:00
### Boot loader installation
# This is fairly safe to set, it makes grub install automatically to the MBR
# if no other operating system is detected on the machine.
d-i grub-installer/only_debian boolean true
# This one makes grub-installer install to the MBR if it also finds some other
# OS, which is less safe as it might not be able to boot that other OS.
d-i grub-installer/with_other_os boolean true
# Due notably to potential USB sticks, the location of the MBR can not be
# determined safely in general, so this needs to be specified:
#d-i grub-installer/bootdev string /dev/sda
2021-07-12 20:37:34 -04:00
# To install to the first device (assuming it is not a USB stick):
d-i grub-installer/bootdev string default
2021-07-12 20:37:34 -04:00
# Use the following option to add additional boot parameters for the
# installed system (if supported by the bootloader installer).
# Note: options passed to the installer will be added automatically.
#d-i debian-installer/add-kernel-opts string nousb
### Finishing up the installation
# Avoid that last message about the install being complete.
d-i finish-install/reboot_in_progress note
#eject install cd
d-i cdrom-detect/eject boolean false
2021-07-12 20:37:34 -04:00
#### Advanced options
### Running custom commands during the installation
# This command is run just before the install finishes, but when there is
# still a usable /target directory. You can chroot to /target and use it
# directly, or use the apt-install and in-target commands to easily install
# packages and run commands in the target system.
#d-i preseed/late_command string apt-install zsh; in-target chsh -s /bin/zsh
d-i preseed/late_command string in-target wget https://git.thomaspcole.com/thomascole/clc-debian/raw/branch/master/firstboot.sh