osc copypac from project:systemsmanagement:saltstack:testing package:salt revision:365

OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:saltstack/salt?expand=0&rev=177
This commit is contained in:
Pablo Suárez Hernández 2020-11-06 10:10:40 +00:00 committed by Git OBS Bridge
parent c1fe687c37
commit 24e47d966b
4 changed files with 43 additions and 1 deletions

View File

@ -1 +1 @@
620b5f043062d74c4955be7609dc855696c0ca05
24bd64b440c2c3f0f154a1b7f7216de20dc07df8

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Fri Nov 6 09:19:22 UTC 2020 - Pablo Suárez Hernández <pablo.suarezhernandez@suse.com>
- Set passphrase for salt-ssh keys to empty string (bsc#1178485)
- Added:
* set-passphrase-for-salt-ssh-keys-to-empty-string-293.patch
-------------------------------------------------------------------
Wed Nov 4 10:54:32 UTC 2020 - Pablo Suárez Hernández <pablo.suarezhernandez@suse.com>

View File

@ -369,6 +369,8 @@ Patch141: path-replace-functools.wraps-with-six.wraps-bsc-1177.patch
Patch142: fix-novendorchange-option-284.patch
# PATCH-FIX_UPSTREAM: https://github.com/saltstack/salt/pull/58871
Patch143: fix-cve-2020-25592-and-add-tests-bsc-1178319.patch
# PATCH-FIX_OPENSUSE: https://github.com/openSUSE/salt/pull/293
Patch144: set-passphrase-for-salt-ssh-keys-to-empty-string-293.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: logrotate
@ -1019,6 +1021,7 @@ cp %{S:5} ./.travis.yml
%patch141 -p1
%patch142 -p1
%patch143 -p1
%patch144 -p1
%build
# Putting /usr/bin at the front of $PATH is needed for RHEL/RES 7. Without this

View File

@ -0,0 +1,31 @@
From 677b7a8881a2e9ebab58cead29b1a6d83850c888 Mon Sep 17 00:00:00 2001
From: Alexander Graul <mail@agraul.de>
Date: Thu, 5 Nov 2020 16:54:44 +0100
Subject: [PATCH] Set passphrase for salt-ssh keys to empty string
(#293)
Since the cmd is not passed to a shell anymore, the "" are taken
literally and not as an empty string.
Bugzilla report: https://bugzilla.suse.com/show_bug.cgi?id=1178485
---
salt/client/ssh/shell.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/salt/client/ssh/shell.py b/salt/client/ssh/shell.py
index 27aba7b382..27ab9f4f1b 100644
--- a/salt/client/ssh/shell.py
+++ b/salt/client/ssh/shell.py
@@ -44,7 +44,7 @@ def gen_key(path):
'''
Generate a key for use with salt-ssh
'''
- cmd = ["ssh-keygen", "-P", '""', "-f", path, "-t", "rsa", "-q"]
+ cmd = ["ssh-keygen", "-P", "", "-f", path, "-t", "rsa", "-q"]
if not os.path.isdir(os.path.dirname(path)):
os.makedirs(os.path.dirname(path))
subprocess.call(cmd)
--
2.28.0