summaryrefslogtreecommitdiff
path: root/manifests/torsocks.pp
diff options
context:
space:
mode:
authorLouis-Philippe VĂ©ronneau <pollito@riseup.net>2018-03-06 17:29:54 +0000
committerLouis-Philippe VĂ©ronneau <pollito@riseup.net>2018-03-06 17:29:54 +0000
commit7c40929d8a2a9438ccd883e9d856d526b852da8c (patch)
treed8529a383482db6cd716c16074e6b798c1069e7b /manifests/torsocks.pp
parent228ae4a53999dbc49fa7c4d2883468dde10f19fb (diff)
parent6ebebe3ab04e8ba3d4b651e49012646046642160 (diff)
Merge branch 'immerda-merge' into 'master'
Immerda merge Closes #2 See merge request shared-puppet-modules-group/tor!19
Diffstat (limited to 'manifests/torsocks.pp')
-rw-r--r--manifests/torsocks.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/torsocks.pp b/manifests/torsocks.pp
index e9fc75b..e1ba8a9 100644
--- a/manifests/torsocks.pp
+++ b/manifests/torsocks.pp
@@ -1,9 +1,9 @@
# manage torsocks
class tor::torsocks (
- $ensure_version = 'installed'
+ $version = 'installed'
){
- include ::tor
+ include ::tor::daemon
package{'torsocks':
- ensure => $ensure_version,
+ ensure => $version,
}
}