]> git.madduck.net Git - code/vinst.git/blob - preseed/wheezy/preseed.cfg

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

a020f237e55c7b67859da62b7d6cb7fd214c050c
[code/vinst.git] / preseed / wheezy / preseed.cfg
1 d-i debian-installer/locale string en_NZ
2
3 d-i keyboard-configuration/xkb-keymap select us
4 d-i keyboard-configuration/layoutcode string us
5
6 d-i netcfg/choose_interface select auto
7 d-i netcfg/dhcp_options select Configure network manually
8 d-i netcfg/confirm_static boolean true
9 d-i netcfg/wireless_wep string
10
11 d-i hw-detect/load_firmware boolean true
12
13 d-i mirror/country string manual
14 d-i mirror/protocol string http
15 d-i mirror/http/hostname string http.debian.net
16 d-i mirror/http/directory string /debian
17 d-i mirror/http/proxy string
18 d-i mirror/suite string wheezy
19
20 d-i anna/choose_modules string network-console
21 d-i network-console/password password r00tme
22 d-i network-console/password-again password r00tme
23 d-i network-console/start boolean true
24 d-i di-utils-shell/do-shell boolean true
25
26 d-i passwd/make-user boolean false
27 d-i passwd/root-password-crypted password $6$lifGZQZ9$OVYc/Z26ilx1DLCOyPSy1/xOz5o.f6weCgMHYXQZ9EE38DYt0xJBd1Z83/KMWhDyeNmKxp0TUqpJN6w.MT72//
28
29 d-i time/zone string Europe/Berlin
30
31 d-i clock-setup/utc boolean true
32 d-i clock-setup/ntp boolean true
33
34 d-i partman-basicfilesystems/choose_label string gpt
35 d-i partman-basicfilesystems/default_label string gpt
36 d-i partman-partitioning/choose_label string gpt
37 d-i partman-partitioning/default_label string gpt
38 d-i partman/choose_label string gpt
39 d-i partman/default_label string gpt
40
41 #d-i partman-partitioning/confirm_write_new_label boolean true
42 #d-i partman-partitioning/unknown_label boolean true
43
44 d-i partman-auto/disk string /dev/vda
45 d-i partman-auto/method string lvm
46 d-i partman-auto/purge_lvm_from_device boolean true
47
48 d-i partman-auto/expert_recipe string madduck :: \
49   1 1 1 free \
50   $gptonly{ } \
51   $primary{ } \
52   method{ biosgrub } \
53   . \
54   8192 32768 -1 ext3 \
55   $defaultignore{ } \
56   $primary{ } \
57   method{ lvm } \
58   . \
59   128 1024 200% linux-swap \
60   $lvmok{ } lv_name{ swap } \
61   method{ swap } format{ } \
62   . \
63   1024 1536 3072 ext3 \
64   $lvmok{ } lv_name{ root } \
65   method{ format } format{ } \
66   use_filesystem{ } filesystem{ ext4 } \
67   mountpoint{ / } label{ root } \
68   options/relatime{ relatime } \
69   options/user_xattr{ user_xattr } \
70   . \
71   2048 3072 6144 ext3 \
72   $lvmok{ } lv_name{ usr } \
73   method{ format } format{ } \
74   use_filesystem{ } filesystem{ ext4 } \
75   mountpoint{ /usr } label{ usr } \
76   options/noatime{ noatime } \
77   options/nodev{ nodev } \
78   . \
79   2048 4096 8192 ext3 \
80   $lvmok{ } lv_name{ var } \
81   method{ format } format{ } \
82   use_filesystem{ } filesystem{ ext4 } \
83   mountpoint{ /var } label{ var } \
84   options/relatime{ relatime } \
85   . \
86   512 10240 -1 ext3 \
87   $lvmok{ } lv_name{ srv } \
88   method{ format } format{ } \
89   use_filesystem{ } filesystem{ ext4 } \
90   mountpoint{ /srv } label{ srv } \
91   options/nodev{ nodev } \
92   options/relatime{ relatime } \
93   options/user_xattr{ user_xattr } \
94   . \
95   512 768 1024 ext3 \
96   $lvmok{ } lv_name{ tmp } \
97   method{ format } format{ } \
98   use_filesystem{ } filesystem{ ext4 } \
99   mountpoint{ /tmp } label{ tmp } \
100   options/nodev{ nodev } \
101   options/relatime{ relatime } \
102   options/user_xattr{ user_xattr } \
103   .
104 d-i partman-auto/choose_recipe select madduck
105 d-i partman-auto-lvm/no_boot boolean true
106
107 d-i partman-md/device_remove_md boolean true
108 d-i partman-lvm/device_remove_lvm boolean true
109 d-i partman-lvm/confirm boolean true
110 d-i partman-lvm/confirm_nooverwrite boolean true
111
112 d-i partman/choose_partition select finish
113 d-i partman/confirm boolean true
114 d-i partman/confirm_nooverwrite boolean true
115
116 d-i apt-setup/non-free boolean false
117 d-i apt-setup/contrib boolean false
118
119 popularity-contest popularity-contest/participate boolean false
120
121 tasksel tasksel/first multiselect
122
123 #d-i pkgsel/include string openssh-server libterm-readline-gnu-perl
124
125 d-i grub-installer/only_debian boolean true
126
127 d-i finish-install/reboot_in_progress note
128
129 d-i debian-installer/exit/poweroff boolean false
130 d-i debian-installer/exit/halt boolean false
131
132 d-i preseed/early_command string tar -xf /commands.tar && rm /commands.tar && [ ! -x /commands/early_command ] || log-output -t early_command /commands/early_command
133 d-i preseed/late_command string [ ! -x /commands/late_command ] || log-output -t late_command /commands/late_command