summaryrefslogtreecommitdiff
path: root/manifests/torsocks.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2018-02-21 23:48:30 +0100
committermh <mh@immerda.ch>2018-02-21 23:48:30 +0100
commit24c5d04259971af0033c86fdf90c6f9c22974600 (patch)
tree994378e1408dd26ff316256ca0d1038c50f8a647 /manifests/torsocks.pp
parent5347a783d2672a16c1c15f1efb0e99e15db9c1c8 (diff)
adjust to the common usage of version as param name
Diffstat (limited to 'manifests/torsocks.pp')
-rw-r--r--manifests/torsocks.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/torsocks.pp b/manifests/torsocks.pp
index 9f735d4..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::daemon
package{'torsocks':
- ensure => $ensure_version,
+ ensure => $version,
}
}