-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadhocracy.preseed
64 lines (49 loc) · 2.13 KB
/
adhocracy.preseed
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
### Localization
d-i debian-installer/locale string en_US
d-i console-keymaps-at/keymap select de-latin1-nodeadkeys
d-i keyboard-configuration/xkb-keymap select de-latin1-nodeadkeys
### Network
d-i netcfg/choose_interface select auto
d-i netcfg/get_hostname string adhocracy.vm
d-i netcfg/get_domain string
d-i netcfg/wireless_wep string
### Mirror settings
d-i mirror/country string manual
d-i mirror/http/hostname string ftp.de.debian.org
d-i mirror/http/directory string /debian
d-i mirror/http/proxy string
### Account setup
d-i passwd/root-login boolean true
d-i passwd/root-password password adhocracy
d-i passwd/root-password-again password adhocracy
d-i passwd/user-fullname string Adhocracy
d-i passwd/username string adhocracy
d-i passwd/user-password password adhocracy
d-i passwd/user-password-again password adhocracy
### Clock and time zone setup
d-i clock-setup/utc boolean true
d-i time/zone string Europe/Berlin
d-i clock-setup/ntp boolean true
### Partitioning
d-i partman-auto/method string regular
d-i partman-auto/disk string /dev/sda
#d-i partman-auto/choose_recipe select atomic
d-i partman-auto/choose_recipe select All files in one partition (recommended for new users)
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
### Base system installation
d-i base-installer/kernel/linux/initramfs-generators string initramfs-tools
d-i base-installer/kernel/image string linux-image-2.6-486
### Package selection
tasksel tasksel/first multiselect standard,
d-i pkgsel/include string openssh-server build-essential
d-i pkgsel/upgrade select full-upgrade
popularity-contest popularity-contest/participate boolean false
d-i grub-installer/only_debian boolean true
d-i grub-installer/with_other_os boolean true
### Finishing up the installation
d-i finish-install/reboot_in_progress note
### After-Installation script ###
d-i preseed/late_command string in-target wget @@@POST-INSTALL-URL@@@ -O /etc/init.d/postinstallation; in-target chmod +x /etc/init.d/postinstallation; in-target update-rc.d postinstallation defaults