f39e3f3ceda0661f726e19edc7b5127d086b086c
[noc.git] / ansible / roles / preseed / templates / preseed_debian-stretch.cfg.j2
1 #########################################################################
2 #  realraum preseed file for Debian stretch based VMs
3 #########################################################################
4
5 d-i debian-installer/language string en
6 d-i debian-installer/country string AT
7 d-i debian-installer/locale string en_US.UTF-8
8 d-i keyboard-configuration/xkb-keymap select us
9
10 d-i netcfg/disable_dhcp boolean true
11 d-i netcfg/choose_interface select {{ install_interface | default(hostvars[hostname].network_cooked.primary.interface) }}
12 d-i netcfg/disable_autoconfig boolean false
13 d-i netcfg/get_ipaddress string {{ hostvars[hostname].network_cooked.primary.ip }}
14 d-i netcfg/get_netmask string {{ hostvars[hostname].network_cooked.primary.mask }}
15 d-i netcfg/get_gateway string {{ hostvars[hostname].network_cooked.primary.gateway }}
16 d-i netcfg/get_nameservers string {{ hostvars[hostname].network_cooked.nameservers | join(' ') }}
17 d-i netcfg/confirm_static boolean true
18
19 d-i netcfg/get_hostname string {{ hostname }}
20 d-i netcfg/get_domain string {{ hostvars[hostname].network_cooked.domain }}
21 d-i netcfg/wireless_wep string
22
23
24 d-i mirror/country string manual
25 d-i mirror/http/hostname string debian.ffgraz.net
26 d-i mirror/http/directory string /debian
27 d-i mirror/http/proxy string
28
29
30 d-i passwd/make-user boolean false
31 d-i passwd/root-password password this-very-very-secure-password-will-be-removed-by-latecommand
32 d-i passwd/root-password-again password this-very-very-secure-password-will-be-removed-by-latecommand
33
34
35 d-i clock-setup/utc boolean true
36 d-i time/zone string Europe/Vienna
37 d-i clock-setup/ntp boolean false
38
39
40 d-i partman-auto/disk string /dev/{{ hostvars[hostname].install_cooked.disks.primary }}
41 d-i partman-auto/method string lvm
42 d-i partman-lvm/device_remove_lvm boolean true
43 d-i partman-md/device_remove_md boolean true
44
45 d-i partman-lvm/confirm boolean true
46 d-i partman-lvm/confirm_nooverwrite boolean true
47
48 d-i partman-auto/expert_recipe string                                   \
49       boot-root ::                                                      \
50               1000 10000 -1 ext4                                        \
51                       $defaultignore{ } $primary{ } $bootable{ }        \
52                       method{ lvm } vg_name{ {{ hostname }} }             \
53               .                                                         \
54               2048 10000 2560 ext4                                      \
55                       $lvmok{ } in_vg{ {{ hostname }} }                   \
56                       method{ format } format{ }                        \
57                       use_filesystem{ } filesystem{ ext4 }              \
58                       mountpoint{ / }                                   \
59               .                                                         \
60               1024 11000 1280 ext4                                      \
61                       $lvmok{ } in_vg{ {{ hostname }} }                   \
62                       method{ format } format{ }                        \
63                       use_filesystem{ } filesystem{ ext4 }              \
64                       mountpoint{ /var }                                \
65               .                                                         \
66               768 10000 768 ext4                                        \
67                       $lvmok{ } in_vg{ {{ hostname }} }                   \
68                       method{ format } format{ }                        \
69                       use_filesystem{ } filesystem{ ext4 }              \
70                       mountpoint{ /var/log }                            \
71                       options/nodev{ nodev } options/noatime{ noatime } \
72                       options/noexec{ noexec }                          \
73               .                                                         \
74               16 20000 -1 ext4                                          \
75                       $lvmok{ } in_vg{ {{ hostname }} }                   \
76                       method( keep } lv_name{ dummy }                   \
77               .
78
79 d-i partman-auto-lvm/no_boot boolean true
80 d-i partman-basicfilesystems/no_swap true
81 d-i partman-partitioning/confirm_write_new_label boolean true
82 d-i partman/choose_partition select finish
83 d-i partman/confirm boolean true
84 d-i partman/confirm_nooverwrite boolean true
85
86
87 d-i base-installer/install-recommends boolean false
88 d-i apt-setup/security_host string debian.ffgraz.net
89
90 tasksel tasksel/first multiselect
91 d-i pkgsel/include string openssh-server python
92 d-i pkgsel/upgrade select safe-upgrade
93 popularity-contest popularity-contest/participate boolean false
94
95 d-i grub-installer/choose_bootdev string /dev/{{ hostvars[hostname].install_cooked.disks.primary }}
96 d-i grub-installer/only_debian boolean true
97 d-i grub-installer/with_other_os boolean false
98
99 d-i finish-install/reboot_in_progress note
100
101
102 d-i preseed/late_command string \
103     lvremove -f {{ hostname }}/dummy; \
104     in-target bash -c "apt-get update -q && apt-get full-upgrade -y -q"; \
105     in-target bash -c "passwd -d root && passwd -l root"; \
106     mkdir -p -m 0700 /target/root/.ssh; \
107     cp /authorized_keys /target/root/.ssh/; \
108 {% if hostvars[hostname].ansible_port is defined %}
109     in-target bash -c "sed -e 's/^\(\s*#*\s*Port.*\)/Port {{ hostvars[hostname].ansible_port }}/' -i /etc/ssh/sshd_config"
110 {% endif %}