diff options
-rw-r--r-- | manifests/daemon.pp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/manifests/daemon.pp b/manifests/daemon.pp index 3f65e7d..358c441 100644 --- a/manifests/daemon.pp +++ b/manifests/daemon.pp @@ -68,8 +68,9 @@ class tor::daemon inherits tor { } # global configurations - define global_opts( $log_rules = [ 'notice file /var/log/tor/notices.log' ], - $ensure = present ) { + define global_opts( $data_dir = $data_dir, + $log_rules = [ 'notice file /var/log/tor/notices.log' ], + $ensure = present ) { file { "${spool_dir}/01.global": content => template('tor/torrc.global.erb'), require => File["${spool_dir}"], |