diff options
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | preseed-cfg | 7 |
2 files changed, 5 insertions, 4 deletions
@@ -1,4 +1,4 @@ -Download Debian stable's netinst ISO image and verify its integrity +Download Debian stable's netinst ISO image and verify its integrity: ~$ ./download-iso --arch=amd64 --rsync-host=ftp.se.debian.org Verifying integrity (OpenPGP signature on SHA-512 manifest)... diff --git a/preseed-cfg b/preseed-cfg index 34bdd07..6f45929 100644 --- a/preseed-cfg +++ b/preseed-cfg @@ -57,7 +57,8 @@ cat <<- EOF d-i pkgsel/upgrade select safe-upgrade d-i preseed/early_command string anna-install tdf-postinst-udeb - d-i preseed/late_command string in-target update-alternatives --set editor /usr/bin/vim.nox + d-i preseed/late_command string in-target \\ + update-alternatives --set editor /usr/bin/vim.nox # Install GRUB to the master boot record grub-installer grub-installer/bootdev string default @@ -74,8 +75,8 @@ cat <<- EOF # Hostname or ipv4 of the Salt master d-i tdf-postinst/salt_master string floyd.documentfoundation.org - # Fingerprint of the master public key to validate the identity of - # the Salt master before the initial key exchange + # Fingerprint of the master public key to validate the identity of + # the Salt master before the initial key exchange d-i tdf-postinst/salt_master_fingerprint string 33:49:0d:84:98:5a:9d:93:89:a9:d1:c8:47:36:e8:83 EOF |