Filip Pytloun | 9b3d6f0 | 2017-02-23 13:02:28 +0100 | [diff] [blame] | 1 | choose-mirror-bin mirror/http/proxy string |
Filip Pytloun | 7ae5c75 | 2016-01-15 13:48:38 +0100 | [diff] [blame] | 2 | d-i debian-installer/locale string en_US |
| 3 | d-i debian-installer/language string en |
| 4 | d-i debian-installer/country EN |
| 5 | |
| 6 | d-i pkgsel/install-language-support boolean false |
| 7 | |
Filip Pytloun | 7ae5c75 | 2016-01-15 13:48:38 +0100 | [diff] [blame] | 8 | d-i debian-installer/framebuffer boolean false |
| 9 | d-i debconf/frontend select noninteractive |
| 10 | d-i base-installer/kernel/override-image string linux-server |
| 11 | d-i clock-setup/utc boolean true |
| 12 | d-i clock-setup/utc-auto boolean true |
| 13 | d-i finish-install/reboot_in_progress note |
| 14 | d-i grub-installer/only_debian boolean true |
| 15 | d-i grub-installer/with_other_os boolean true |
| 16 | d-i netcfg/get_domain string unassigned-domain |
| 17 | d-i netcfg/get_hostname string unassigned-hostname |
| 18 | |
| 19 | d-i partman-auto/disk string /dev/sda /dev/vda |
| 20 | d-i partman-auto/method string regular |
| 21 | d-i partman/choose_partition select finish |
| 22 | d-i partman/confirm boolean true |
| 23 | d-i partman/confirm_nooverwrite boolean true |
| 24 | d-i partman/confirm_write_new_label boolean true |
| 25 | d-i partman-basicfilesystems/no_swap boolean false |
| 26 | d-i partman-auto/choose_recipe select boot-root |
| 27 | |
| 28 | d-i partman-auto/expert_recipe string \ |
| 29 | boot-root :: \ |
| 30 | 512 512 -1 ext4 \ |
| 31 | $primary{ } $bootable{ } \ |
| 32 | method{ format } format{ } \ |
| 33 | use_filesystem{ } filesystem{ ext4 } \ |
| 34 | mountpoint{ / } \ |
| 35 | options/noatime{ noatime } \ |
| 36 | . \ |
| 37 | |
| 38 | d-i pkgsel/include string openssh-server |
| 39 | d-i pkgsel/install-language-support boolean false |
Marek Celoud | eb3ce3e | 2017-05-22 10:00:11 +0200 | [diff] [blame^] | 40 | d-i pkgsel/update-policy select none |
Filip Pytloun | 7ae5c75 | 2016-01-15 13:48:38 +0100 | [diff] [blame] | 41 | popularity-contest popularity-contest/participate boolean false |
| 42 | |
| 43 | d-i pkgsel/upgrade select none |
| 44 | |
| 45 | d-i time/zone string UTC |
| 46 | d-i passwd/root-login boolean true |
| 47 | d-i passwd/make-user boolean false |
| 48 | d-i openssh-server/permit-root-login boolean true |
| 49 | d-i user-setup/allow-password-weak boolean true |
| 50 | d-i user-setup/encrypt-home boolean false |
| 51 | tasksel tasksel/first multiselect minimal, ssh-server, openssh-server |
| 52 | |
| 53 | d-i preseed/late_command string \ |
| 54 | in-target sed -i 's/PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config |