diff options
-rw-r--r-- | manifests/daemon.pp | 3 | ||||
-rw-r--r-- | templates/torrc.global.erb | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/manifests/daemon.pp b/manifests/daemon.pp index 2440180..2522b2c 100644 --- a/manifests/daemon.pp +++ b/manifests/daemon.pp @@ -6,7 +6,8 @@ class tor::daemon ( $config_file = '/etc/tor/torrc', $use_bridges = 0, $automap_hosts_on_resolve = 0, - $log_rules = [ 'notice file /var/log/tor/notices.log' ] + $log_rules = [ 'notice file /var/log/tor/notices.log' ], + $safe_logging = 1, ) { class{'tor': diff --git a/templates/torrc.global.erb b/templates/torrc.global.erb index c320bfa..fc8c11e 100644 --- a/templates/torrc.global.erb +++ b/templates/torrc.global.erb @@ -12,6 +12,9 @@ Log notice syslog Log <%= log_rule %> <% end -%> <% end -%> +<%- if safe_logging != 1 then -%> +SafeLogging <%= safe_logging %> +<%- end -%> <% if (v=scope.lookupvar('tor::daemon::automap_hosts_on_resolve')) != '0' -%> AutomapHostsOnResolve <%= v %> |