Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepend ssh_log_file with root_dir #40443

Merged
merged 1 commit into from Mar 31, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion salt/config/__init__.py
Expand Up @@ -3318,7 +3318,7 @@ def apply_master_config(overrides=None, defaults=None):
]

# These can be set to syslog, so, not actual paths on the system
for config_key in ('log_file', 'key_logfile'):
for config_key in ('log_file', 'key_logfile', 'ssh_log_file'):
log_setting = opts.get(config_key, '')
if log_setting is None:
continue
Expand Down