diff options
-rw-r--r-- | templates/torrc.exit_policy.erb | 2 | ||||
-rw-r--r-- | templates/torrc.global.erb | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/templates/torrc.exit_policy.erb b/templates/torrc.exit_policy.erb index 92367c2..65f9d09 100644 --- a/templates/torrc.exit_policy.erb +++ b/templates/torrc.exit_policy.erb @@ -1,5 +1,5 @@ # exit policies: <%= name %> -<%- if reject_private != 1 then -%> +<%- if reject_private != '1' then -%> ExitPolicyRejectPrivate <%= reject_private %> <%- end -%> <%- for policy in accept -%> diff --git a/templates/torrc.global.erb b/templates/torrc.global.erb index 0bc3bf2..e0f6f7e 100644 --- a/templates/torrc.global.erb +++ b/templates/torrc.global.erb @@ -1,6 +1,8 @@ # runtime RunAsDaemon 1 +<%- if scope.lookupvar('tor::daemon::data_dir') != '/var/lib/tor' then -%> DataDirectory <%= scope.lookupvar('tor::daemon::data_dir') %> +<%- end -%> # log <%- if scope.lookupvar('tor::daemon::log_rules') != [] then -%> @@ -11,5 +13,9 @@ Log <%= log_rule %> Log notice syslog <%- end -%> +<%- if scope.lookupvar('tor::daemon::automap_hosts_on_resolve') != '0' then -%> AutomapHostsOnResolve <%= scope.lookupvar('tor::daemon::automap_hosts_on_resolve') %> +<%- end -%> +<%- if scope.lookupvar('tor::daemon::use_bridges') != '0' then -%> UseBridges <%= scope.lookupvar('tor::daemon::use_bridges') %> +<%- end -%> |