blob: 3212a14bae377c10a6fdcf97946e875b05ec7785 [file] [log] [blame]
Zack Williams5b5d9a72020-11-06 13:59:06 -07001#_preseed_V1
2{#
3SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
4SPDX-License-Identifier: Apache-2.0
5#}
6# preseed docs: https://help.ubuntu.com/18.04/installation-guide/amd64/apbs04.html
7
8# enable automatic install
9d-i auto-install/enable boolean true
10
11# ask only critical level questions
12d-i debconf/priority select critical
13
14# locale and keyboard
15d-i debian-installer/locale string en_US.UTF-8
16d-i console-setup/ask_detect boolean false
17d-i keyboard-configuration/xkb-keymap select us
18
19# clock
20d-i clock-setup/utc boolean true
21d-i time/zone string Etc/UTC
22d-i clock-setup/ntp boolean true
23d-i clock-setup/ntp-server string ntp.ubuntu.com
24
25# network and hostname
26d-i netcfg/choose_interface select auto
27d-i netcfg/hostname string {{ item['hostname'] }}
Zack Williamsdb394142020-11-11 22:52:34 -070028d-i netcfg/get_domain string {{ item['domain'] }}
Zack Williams5b5d9a72020-11-06 13:59:06 -070029d-i hw-detect/load_firmware boolean true
30
31## Storage
32# overwrite previous partitions
33d-i partman-lvm/device_remove_lvm boolean true
34d-i partman-lvm/confirm boolean true
35d-i partman-lvm/confirm_nooverwrite boolean true
36d-i partman-md/device_remove_md boolean true
37d-i partman-md/confirm boolean true
38
39# use lvm
40d-i partman-auto/method string lvm
41d-i partman-auto/init_automatically_partition select biggest_free
42d-i partman-auto-lvm/guided_size string max
43d-i partman-auto-lvm/new_vg_name string primary
44
45# use gpt
46d-i partman-basicfilesystems/choose_label string gpt
47d-i partman-basicfilesystems/default_label string gpt
48d-i partman-partitioning/choose_label string gpt
49d-i partman-partitioning/default_label string gpt
50d-i partman/choose_label string gpt
51d-i partman/default_label string gpt
52
53# use ext4
54d-i partman/default_filesystem string ext4
55
56# partitioning
57d-i partman-auto/choose_recipe select atomic
58d-i partman-partitioning/confirm_write_new_label boolean true
59d-i partman/alignment select optimal
60d-i partman/choose_partition select finish
61d-i partman/confirm boolean true
62d-i partman/confirm_nooverwrite boolean true
63
Zack Williamsdb394142020-11-11 22:52:34 -070064### Do NOT install on the USB stick(!)
65#
66# The Debian installer will install on the first disk it finds which can
67# sometimes be the USB stick itself. Work around this by rolling our own auto
68# detect logic which disallows installing on USB devices.
69#
70# Also, fix issue with grub hang on install
Zack Williams5b5d9a72020-11-06 13:59:06 -070071# https://bugs.launchpad.net/ubuntu/+source/os-prober/+bug/1663645
72d-i partman/early_command string \
Zack Williamsdb394142020-11-11 22:52:34 -070073 USBDEV_LIST="$(mktemp)"; \
74 list-devices usb-partition | sed "s/\(.*\)./\1/" > "$USBDEV_LIST"; \
75 BOOTDEV="$(list-devices disk | grep -vf "$USBDEV_LIST" | head -n 1)"; \
76 debconf-set partman-auto/disk "$BOOTDEV"; \
77 debconf-set grub-installer/bootdev "$BOOTDEV"; \
Zack Williams5b5d9a72020-11-06 13:59:06 -070078 while /bin/true; do sleep 0.01; rm -f /target/etc/grub.d/30_os-prober; done &
79
80d-i grub-installer/only_debian boolean true
81
82## Software
83# install mirror
84d-i mirror/country string manual
85d-i mirror/protocol select http
86d-i mirror/http/hostname string us.archive.ubuntu.com
87d-i mirror/http/directory string /ubuntu
88d-i mirror/http/proxy string
89
90# Use the HWE kernel
91d-i base-installer/kernel/image select linux-generic-hwe-18.04
92base-installer base-installer/kernel/image select linux-generic-hwe-18.04
93
94# install openssh and python3
95d-i pkgsel/include string openssh-server python3
96
97# don't install any predefined package groups
98d-i tasksel/first multiselect none
99
100# upgrade all packages on install
101d-i pkgsel/upgrade select full-upgrade
102
103# don't allow root login over SSH
104openssh-server openssh-server/permit-root-login boolean true
105openssh-server openssh-server/password-authentication boolean true
106
107# don't automatically install updates on running system
108pkgsel pkgsel/update-policy select none
109
110# verbose boot, no splashscreen
111d-i debian-installer/quiet boolean false
112d-i debian-installer/splash boolean false
113
114## Users
115# disable root account
116d-i passwd/root-login boolean false
117d-i passwd/root-password-crypted password !!
118
119# create user
120d-i passwd/username string onfadmin
121d-i passwd/user-fullname string ONFAdmin
122d-i passwd/user-password-crypted password {{ preseed_onfadmin_pw_crypt }}
123
124# add SSH pubkey key to user, secure SSHd
125d-i preseed/late_command string \
126 in-target mkdir -p --mode=0700 /home/onfadmin/.ssh ;\
127 in-target sh -c 'echo "{{ preseed_onfadmin_ssh_pubkey }}" > /home/onfadmin/.ssh/authorized_keys';\
128 in-target chmod 0600 /home/onfadmin/.ssh/authorized_keys;\
129 in-target chown -R onfadmin:onfadmin /home/onfadmin/.ssh;\
130 in-target sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin no/g' /etc/ssh/sshd_config;\
131 in-target sed -i 's/#PasswordAuthentication yes/PasswordAuthentication no/g' /etc/ssh/sshd_config;
132
133## Reboot
134d-i finish-install/reboot_in_progress note