66 lines
2.4 KiB
Diff
66 lines
2.4 KiB
Diff
From 5069e58c009bc8c689f00de35391ae6d860197a4 Mon Sep 17 00:00:00 2001
|
|
From: Emanuele Giuseppe Esposito <eesposit@redhat.com>
|
|
Date: Thu, 20 May 2021 08:53:55 +0200
|
|
Subject: [PATCH 1/2] rhel/cloud.cfg: remove ssh_genkeytypes in settings.py and
|
|
set in cloud.cfg
|
|
|
|
RH-Author: Emanuele Giuseppe Esposito <eesposit@redhat.com>
|
|
RH-MergeRequest: 16: rhel/cloud.cfg: remove ssh_genkeytypes in settings.py and set in cloud.cfg
|
|
RH-Commit: [1/1] 67a4904f4d7918be4c9b3c3dbf340b3ecb9e8786
|
|
RH-Bugzilla: 1970909
|
|
RH-Acked-by: Mohamed Gamal Morsy <mmorsy@redhat.com>
|
|
RH-Acked-by: Eduardo Otubo <otubo@redhat.com>
|
|
RH-Acked-by: Vitaly Kuznetsov <vkuznets@redhat.com>
|
|
|
|
Currently genkeytypes in cloud.cfg is set to None, so together with
|
|
ssh_deletekeys=1 cloudinit on first boot it will just delete the existing
|
|
keys and not generate new ones.
|
|
|
|
Just removing that property in cloud.cfg is not enough, because
|
|
settings.py provides another empty default value that will be used
|
|
instead, resulting to no key generated even when the property is not defined.
|
|
|
|
Removing genkeytypes also in settings.py will default to GENERATE_KEY_NAMES,
|
|
but since we want only 'rsa', 'ecdsa' and 'ed25519', add back genkeytypes in
|
|
cloud.cfg with the above defaults.
|
|
|
|
Also remove ssh_deletekeys in settings.py as we always need
|
|
to 1 (and it also defaults to 1).
|
|
|
|
Signed-off-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
|
|
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
---
|
|
cloudinit/settings.py | 2 --
|
|
rhel/cloud.cfg | 2 +-
|
|
2 files changed, 1 insertion(+), 3 deletions(-)
|
|
|
|
diff --git a/cloudinit/settings.py b/cloudinit/settings.py
|
|
index 43a1490c..2acf2615 100644
|
|
--- a/cloudinit/settings.py
|
|
+++ b/cloudinit/settings.py
|
|
@@ -49,8 +49,6 @@ CFG_BUILTIN = {
|
|
'def_log_file_mode': 0o600,
|
|
'log_cfgs': [],
|
|
'mount_default_fields': [None, None, 'auto', 'defaults,nofail', '0', '2'],
|
|
- 'ssh_deletekeys': False,
|
|
- 'ssh_genkeytypes': [],
|
|
'syslog_fix_perms': [],
|
|
'system_info': {
|
|
'paths': {
|
|
diff --git a/rhel/cloud.cfg b/rhel/cloud.cfg
|
|
index 9ecba215..cbee197a 100644
|
|
--- a/rhel/cloud.cfg
|
|
+++ b/rhel/cloud.cfg
|
|
@@ -7,7 +7,7 @@ ssh_pwauth: 0
|
|
mount_default_fields: [~, ~, 'auto', 'defaults,nofail,x-systemd.requires=cloud-init.service', '0', '2']
|
|
resize_rootfs_tmp: /dev
|
|
ssh_deletekeys: 1
|
|
-ssh_genkeytypes: ~
|
|
+ssh_genkeytypes: ['rsa', 'ecdsa', 'ed25519']
|
|
syslog_fix_perms: ~
|
|
disable_vmware_customization: false
|
|
|
|
--
|
|
2.27.0
|
|
|