e70dfb44dcf158308ec761d1e0c2a84aed694762
[noc.git] / ansible / roles / preseed / templates / preseed_ubuntu-xenial.cfg.j2
1 #########################################################################
2 #  realraum preseed file for Ubuntu xenial 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 localechooser/preferred-locale string en_US.UTF-8
9 d-i localechooser/supported-locales multiselect de_DE.UTF-8, de_AT.UTF-8
10 d-i console-setup/ask_detect boolean false
11 d-i keyboard-configuration/xkb-keymap select us
12 d-i keyboard-configuration/layoutcode string us
13
14 d-i hw-detect/load_firmware boolean false
15
16 d-i netcfg/disable_dhcp boolean true
17 d-i netcfg/choose_interface select {{ install_interface | default(hostvars[hostname].network_cooked.primary.interface) }}
18 d-i netcfg/disable_autoconfig boolean false
19 d-i netcfg/get_ipaddress string {{ hostvars[hostname].network_cooked.primary.ip }}
20 d-i netcfg/get_netmask string {{ hostvars[hostname].network_cooked.primary.mask }}
21 d-i netcfg/get_gateway string {{ hostvars[hostname].network_cooked.primary.gateway }}
22 d-i netcfg/get_nameservers string {{ hostvars[hostname].network_cooked.nameservers | join(' ') }}
23 d-i netcfg/confirm_static boolean true
24
25 d-i netcfg/hostname string {{ hostname }}
26 d-i netcfg/get_hostname string {{ hostname }}
27 d-i netcfg/domain string {{ hostvars[hostname].network_cooked.domain }}
28 d-i netcfg/get_domain string {{ hostvars[hostname].network_cooked.domain }}
29 d-i netcfg/wireless_wep string
30
31
32 d-i mirror/country string manual
33 d-i mirror/http/hostname string debian.ffgraz.net
34 d-i mirror/http/directory string /ubuntu
35 d-i mirror/http/proxy string
36
37
38 d-i passwd/make-user boolean false
39 d-i passwd/root-login boolean true
40 d-i passwd/root-password password this-very-very-secure-password-will-be-removed-by-latecommand
41 d-i passwd/root-password-again password this-very-very-secure-password-will-be-removed-by-latecommand
42
43
44 d-i clock-setup/utc boolean true
45 d-i time/zone string Europe/Vienna
46 d-i clock-setup/ntp boolean false
47
48
49 d-i partman/early_command string \
50     debconf-set partman-auto/disk "$(readlink -f {{ hostvars[hostname].install_cooked.disks.primary }})"; \
51     debconf-set grub-installer/bootdev "$(readlink -f {{ hostvars[hostname].install_cooked.disks.primary }})"; \
52     umount -l /media || true
53
54 d-i grub-installer/choose_bootdev string manual
55 d-i grub-installer/bootdev seen true
56
57 d-i partman-auto/method string lvm
58 d-i partman-auto/purge_lvm_from_device boolean true
59 d-i partman-auto-lvm/new_vg_name string {{ hostname }}
60 d-i partman-auto-lvm/guided_size string max
61
62 d-i partman-lvm/device_remove_lvm boolean true
63 d-i partman-md/device_remove_md boolean true
64
65 d-i partman-lvm/confirm boolean true
66 d-i partman-lvm/confirm_nooverwrite boolean true
67
68 d-i partman-auto/expert_recipe string                                    \
69       boot-root ::                                                       \
70               1000 10000 -1 ext4                                         \
71                       $defaultignore{ } $primary{ } $bootable{ }         \
72                       method{ lvm } vg_name{ {{ hostname }} }            \
73               .                                                          \
74               2048 10000 2560 ext4                                       \
75                       $lvmok{ } in_vg{ {{ hostname }} }                  \
76                       method{ format } format{ }                         \
77                       use_filesystem{ } filesystem{ ext4 }               \
78                       mountpoint{ / }                                    \
79               .                                                          \
80               1024 11000 1280 ext4                                       \
81                       $lvmok{ } in_vg{ {{ hostname }} }                  \
82                       method{ format } format{ }                         \
83                       use_filesystem{ } filesystem{ ext4 }               \
84                       mountpoint{ /var }                                 \
85               .                                                          \
86               768 10000 768 ext4                                         \
87                       $lvmok{ } in_vg{ {{ hostname }} }                  \
88                       method{ format } format{ }                         \
89                       use_filesystem{ } filesystem{ ext4 }               \
90                       mountpoint{ /var/log }                             \
91                       options/nodev{ nodev } options/noatime{ noatime }  \
92                       options/noexec{ noexec }                           \
93               .                                                          \
94               16 20000 -1 ext4                                           \
95                       $lvmok{ } in_vg{ {{ hostname }} } lv_name{ dummy } \
96               .
97
98 d-i partman-auto-lvm/no_boot boolean true
99 d-i partman-basicfilesystems/no_swap true
100 d-i partman-partitioning/confirm_write_new_label boolean true
101 d-i partman/choose_partition select finish
102 d-i partman/confirm boolean true
103 d-i partman/confirm_nooverwrite boolean true
104
105
106 d-i base-installer/install-recommends boolean false
107 d-i apt-setup/security_host string debian.ffgraz.net
108
109 tasksel tasksel/first multiselect
110 d-i pkgsel/include string openssh-server python python-apt
111 d-i pkgsel/upgrade select safe-upgrade
112 popularity-contest popularity-contest/participate boolean false
113 d-i pkgsel/update-policy select none
114 d-i base-installer/kernel/override-image string linux-generic-hwe-16.04
115
116 d-i grub-installer/only_debian boolean true
117 d-i grub-installer/with_other_os boolean false
118
119 d-i finish-install/reboot_in_progress note
120
121
122 d-i preseed/late_command string \
123     lvremove -f {{ hostname }}/dummy; \
124     in-target bash -c "apt-get update -q && apt-get full-upgrade -y -q"; \
125     in-target bash -c "passwd -d root && passwd -l root"; \
126     in-target bash -c "sed -e 's/^allow-hotplug/auto/' -i /etc/network/interfaces"; \
127     mkdir -p -m 0700 /target/root/.ssh; \
128     cp /authorized_keys /target/root/.ssh/; \
129 {% if hostvars[hostname].ansible_port is defined %}
130     in-target bash -c "sed -e 's/^\(\s*#*\s*Port.*\)/Port {{ hostvars[hostname].ansible_port }}/' -i /etc/ssh/sshd_config"
131 {% endif %}