We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d490578 commit 9eb091dCopy full SHA for 9eb091d
salt/config.py
@@ -21,6 +21,9 @@ def minion_config(path):
21
'cachedir': '/var/cache/salt',
22
'disable_modules': [],
23
'open_mode': False,
24
+ 'log_file': '/var/log/salt/master',
25
+ 'log_level': 'DEBUG',
26
+ 'out_level': 'ERROR',
27
}
28
29
if os.path.isfile(path):
@@ -54,6 +57,9 @@ def master_config(path):
54
57
'pki_dir': '/etc/salt/pki',
55
58
56
59
60
61
62
63
64
65
@@ -73,3 +79,4 @@ def master_config(path):
73
79
opts['open_mode'] = False
74
80
75
81
return opts
82
+
0 commit comments