blob: 74410b274839f48285196eed7a145456c54153d0 (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#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-keymaps-at/keymap select us
# 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
# Select individual packages and groups for install
d-i pkgsel/include string openssh-server
tasksel tasksel/first multiselect standard, desktop
# Debian specific configuration
# See http://www.debian.org/releases/stable/i386/apbs04.html.en & preseed documentation
# By default the installer requires that repositories be authenticated
# using a known gpg key. This setting can be used to disable that
# authentication. Warning: Insecure, not recommended.
d-i debian-installer/allow_unauthenticated string true
# Some versions of the installer can report back on what software you have
# installed, and what software you use. The default is not to report back,
# but sending reports helps the project determine what software is most
# popular and include it on CDs.
popularity-contest popularity-contest/participate boolean false
|