2018-04-11 18:47:08 +02:00
|
|
|
From f77ae8d0426e551d6249b097850da0ed4ff7276d Mon Sep 17 00:00:00 2001
|
2018-03-19 09:54:13 +01:00
|
|
|
From: Michael Calmer <mc@suse.de>
|
|
|
|
Date: Sun, 11 Feb 2018 19:15:27 +0100
|
|
|
|
Subject: [PATCH] move log_file option to changeable defaults
|
|
|
|
|
|
|
|
---
|
|
|
|
salt/client/ssh/__init__.py | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/salt/client/ssh/__init__.py b/salt/client/ssh/__init__.py
|
|
|
|
index 3dd46899e3..f1c1ad9a22 100644
|
|
|
|
--- a/salt/client/ssh/__init__.py
|
|
|
|
+++ b/salt/client/ssh/__init__.py
|
|
|
|
@@ -884,6 +884,7 @@ class Single(object):
|
|
|
|
# Pre apply changeable defaults
|
|
|
|
self.minion_opts = {
|
|
|
|
'grains_cache': True,
|
|
|
|
+ 'log_file': 'salt-call.log',
|
|
|
|
}
|
|
|
|
self.minion_opts.update(opts.get('ssh_minion_opts', {}))
|
|
|
|
if minion_opts is not None:
|
|
|
|
@@ -893,7 +894,6 @@ class Single(object):
|
|
|
|
'root_dir': os.path.join(self.thin_dir, 'running_data'),
|
|
|
|
'id': self.id,
|
|
|
|
'sock_dir': '/',
|
|
|
|
- 'log_file': 'salt-call.log',
|
|
|
|
'fileserver_list_cache_time': 3,
|
|
|
|
})
|
|
|
|
self.minion_config = salt.serializers.yaml.serialize(self.minion_opts)
|
|
|
|
--
|
|
|
|
2.16.2
|
|
|
|
|
|
|
|
|