summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2013-01-02 13:05:57 +0100
committermh <mh@immerda.ch>2013-01-02 13:05:57 +0100
commitb421d5d7936a7e2f93f1c62322a669d91693b9b6 (patch)
tree35773d49c6833da1333e3cf54d9c41aefceedf5e
parent332bed5098758e5a2767246c4224b25f650c794f (diff)
make it working on 2.6 - can't end with a , on 2.6
-rw-r--r--manifests/daemon.pp2
-rw-r--r--manifests/init.pp2
-rw-r--r--manifests/torsocks.pp2
3 files changed, 3 insertions, 3 deletions
diff --git a/manifests/daemon.pp b/manifests/daemon.pp
index 2bee67b..623aa22 100644
--- a/manifests/daemon.pp
+++ b/manifests/daemon.pp
@@ -3,7 +3,7 @@ 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' ]
) inherits tor {
# packages, user, group
diff --git a/manifests/init.pp b/manifests/init.pp
index 82820f5..c620718 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1,6 +1,6 @@
class tor (
$ensure_version = 'installed',
- $use_munin = false,
+ $use_munin = false
){
package { [ 'tor', 'tor-geoipdb' ]:
diff --git a/manifests/torsocks.pp b/manifests/torsocks.pp
index 452b4f1..b4c3ad6 100644
--- a/manifests/torsocks.pp
+++ b/manifests/torsocks.pp
@@ -1,5 +1,5 @@
class tor::torsocks (
- $ensure_version = 'installed',
+ $ensure_version = 'installed'
){
include ::tor
package{'torsocks':