-
-
Save GiedriusS/9053014e39ad17a7e4669e28bc7494bc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d-i clock-setup/utc boolean true | |
d-i time/zone string GMT | |
d-i netcfg/choose_interface select auto | |
d-i netcfg/no_default_route boolean true | |
d-i user-setup/allow-password-weak boolean true | |
d-i passwd/root-login boolean true | |
d-i passwd/make-user boolean false | |
d-i passwd/root-password password RootPw | |
d-i passwd/root-password-again password RootPw | |
d-i user-setup/encrypt-home boolean false | |
d-i partman-auto/method string lvm | |
d-i partman-auto-lvm/guided_size string max | |
d-i partman-auto/choose_recipe select atomic | |
d-i partman-lvm/device_remove_lvm boolean true | |
d-i partman-md/device_remove_md boolean true | |
d-i partman-partitioning/confirm_write_new_label boolean true | |
d-i partman/choose_partition select finish | |
d-i partman/confirm boolean true | |
d-i partman-lvm/confirm_nooverwrite boolean true | |
d-i partman/confirm_nooverwrite boolean true | |
d-i mirror/http/proxy string | |
d-i pkgsel/update-policy select none | |
d-i clock-setup/ntp-server string time.nist.gov | |
tasksel tasksel/first multiselect standard | |
d-i pkgsel/install-language-support boolean false | |
d-i pkgsel/include string openssh-server open-vm-tools net-tools | |
d-i grub-installer/only_debian boolean true | |
d-i preseed/late_command string in-target sh -c 'sed -i "s/^.*PermitRootLogin.*\$/PermitRootLogin yes/g" /etc/ssh/sshd_config'; \ | |
in-target sh -c 'echo "auto ens33\niface ens33 inet dhcp" >> /etc/network/interfaces' | |
d-i finish-install/reboot_in_progress note |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment