From c1a4e5991db9a5a593000850694a41f24b516556 Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Fri, 9 Jul 2021 18:28:05 +0200 Subject: [PATCH] Fixes #32971 - Do not enable by default Currently the example config file contains enabled: true which means yum install is sufficient to enable it. However, you must also create a key. All plugins are disabled by default and this follow that. What's worse, true means both HTTP and HTTPS which can also be less secure. --- settings.d/remote_execution_ssh.yml.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.d/remote_execution_ssh.yml.example b/settings.d/remote_execution_ssh.yml.example index 7d0412d..9b50192 100644 --- a/settings.d/remote_execution_ssh.yml.example +++ b/settings.d/remote_execution_ssh.yml.example @@ -1,5 +1,5 @@ --- -:enabled: true +:enabled: false :ssh_identity_key_file: '~/.ssh/id_rsa_foreman_proxy' :local_working_dir: '/var/tmp' :remote_working_dir: '/var/tmp'