diff options
Diffstat (limited to 'puppet/modules/tor/manifests/torsocks.pp')
-rw-r--r-- | puppet/modules/tor/manifests/torsocks.pp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/puppet/modules/tor/manifests/torsocks.pp b/puppet/modules/tor/manifests/torsocks.pp new file mode 100644 index 00000000..e9fc75b2 --- /dev/null +++ b/puppet/modules/tor/manifests/torsocks.pp @@ -0,0 +1,9 @@ +# manage torsocks +class tor::torsocks ( + $ensure_version = 'installed' +){ + include ::tor + package{'torsocks': + ensure => $ensure_version, + } +} |