blob: 43ff7f79a1ba236df3799f0b1545974109591708 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#platform=x86, AMD64, or Intel EM64T
# System authorization information
# System bootloader configuration
# Partition clearing information
# Use text mode install
# Firewall configuration
# Run the Setup Agent on first boot
# System keyboard
d-i console-setup/dont_ask_layout note
d-i console-setup/layoutcode string us
d-i console-setup/layout select U.S. English
# System language
# Use network installation
# NOTE : The suite seems to be hardcoded on installer
d-i mirror/suite string $suite
d-i mirror/country string enter information manually
d-i mirror/http/hostname string $hostname
d-i mirror/http/directory string $directory
d-i mirror/http/proxy string
# If any cobbler repo definitions were referenced in the kickstart profile, include them here.
# Network information
# NOTE : this questions are asked befor downloading preseed
#d-i netcfg/get_hostname string unassigned-hostname
#d-i netcfg/get_domain string unassigned-hostname
# Reboot after installation
finish-install finish-install/reboot_in_progress note
#Root password
d-i passwd/root-password-crypted password \$1\$mF86/UHC\$WvcIcX2t6crBz2onWxyac.
user-setup-udeb passwd/root-login boolean true
user-setup-udeb passwd/make-user boolean false
# SELinux configuration
# Do not configure the X Window System
# System timezone
clock-setup clock-setup/utc boolean false
tzsetup-udeb time/zone select America/New_York
# Install OS instead of upgrade
# Clear the Master Boot Record
|