diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-15 17:11:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-15 17:11:10 +0100 |
commit | 4958228ab576d11e695155998441f30ab891c656 (patch) | |
tree | 2f4a3fe743429e45bfc20d4678994d3219b7c87d | |
parent | 5530fab8f2636c08077cddf5a1ffcae2117e5161 (diff) | |
parent | b6fe268876feeb151bd1f4c6b60356198f9408bc (diff) | |
download | vyos-1x-4958228ab576d11e695155998441f30ab891c656.tar.gz vyos-1x-4958228ab576d11e695155998441f30ab891c656.zip |
Merge pull request #683 from sever-sever/T3157
salt: T3157: Fix location for log file
-rw-r--r-- | data/templates/salt-minion/minion.tmpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/data/templates/salt-minion/minion.tmpl b/data/templates/salt-minion/minion.tmpl index 405fb9131..99749b57a 100644 --- a/data/templates/salt-minion/minion.tmpl +++ b/data/templates/salt-minion/minion.tmpl @@ -21,7 +21,9 @@ hash_type: {{ hash }} # location. Remote logging works best when configured to use rsyslogd(8) (e.g.: # ``file:///dev/log``), with rsyslogd(8) configured for network logging. The URI # format is: <file|udp|tcp>://<host|socketpath>:<port-if-required>/<log-facility> -log_file: file:///dev/log +# log_file: file:///dev/log +# +log_file: /var/log/salt/minion # The level of messages to send to the console. # One of 'garbage', 'trace', 'debug', info', 'warning', 'error', 'critical'. |