diff options
author | Philip Hands <phil@hands.com> | 2022-09-15 20:21:47 +0200 |
---|---|---|
committer | Philip Hands <phil@hands.com> | 2022-10-11 21:18:39 +0200 |
commit | a7f53c0765601d36c4477da17c2be4ea89c7e48d (patch) | |
tree | 82227386a542b91c95d4bc202b519e6ed3e3c1dc /en | |
parent | 3d81512a3f07ba652fa36a246fd2ed53377aebc7 (diff) | |
download | installation-guide-a7f53c0765601d36c4477da17c2be4ea89c7e48d.zip |
mention base64:// option for apt-setup/localN/key
Diffstat (limited to 'en')
-rw-r--r-- | en/appendix/preseed.xml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/en/appendix/preseed.xml b/en/appendix/preseed.xml index 73fcf3382..0a4582149 100644 --- a/en/appendix/preseed.xml +++ b/en/appendix/preseed.xml @@ -1452,10 +1452,12 @@ d-i apt-setup/cdrom/set-first boolean false # apt will complain about the unauthenticated repository and so the # sources.list line will be left commented out. #d-i apt-setup/local0/key string http://local.server/key -# If the provided key file ends in ".asc" the key file needs to be an -# ASCII-armoured PGP key, if it ends in ".gpg" it needs to use the -# "GPG key public keyring" format, the "keybox database" format is -# currently not supported. +# or one can provide it in-line by base64 encoding the contents of the +# key file (with `base64 -w0`) and specifying it thus: +#d-i apt-setup/local0/key string base64://LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tCi4uLgo= +# The content of the key file is checked to see if it appears to be ASCII-armoured. +# If so it will be saved with an ".asc" extension, otherwise it gets a '.gpg' extension. +# "keybox database" format is currently not supported. (see generators/60local in apt-setup's source) # By default the installer requires that repositories be authenticated # using a known gpg key. This setting can be used to disable that |