aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2012-06-05 18:49:34 -0300
committerSilvio Rhatto <rhatto@riseup.net>2012-06-05 18:49:34 -0300
commit8a237d7d7a9de5ec2a375c29412278435bc02481 (patch)
tree6cdda9b0aa47b49113ea87b34b54f217c86daa7d /manifests
parentaac3e28563191b8e9630b5b3dd5a45a3bb4bd87c (diff)
downloadpuppet-nodo-8a237d7d7a9de5ec2a375c29412278435bc02481.tar.gz
puppet-nodo-8a237d7d7a9de5ec2a375c29412278435bc02481.tar.bz2
Adding utils::tor
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp1
-rw-r--r--manifests/subsystems/utils/tor.pp5
-rw-r--r--manifests/tor.pp1
3 files changed, 7 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index fbd5cf0..d9da7a0 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -93,6 +93,7 @@ import "subsystems/utils/ruby.pp"
import "subsystems/utils/security.pp"
import "subsystems/utils/storage.pp"
import "subsystems/utils/web.pp"
+import "subsystems/utils/tor.pp"
import "subsystems/firewall.pp"
import "subsystems/firewall/printer.pp"
import "subsystems/firewall/router.pp"
diff --git a/manifests/subsystems/utils/tor.pp b/manifests/subsystems/utils/tor.pp
new file mode 100644
index 0000000..1a696c4
--- /dev/null
+++ b/manifests/subsystems/utils/tor.pp
@@ -0,0 +1,5 @@
+class utils::tor {
+ package { 'tor-arm':
+ ensure => installed,
+ }
+}
diff --git a/manifests/tor.pp b/manifests/tor.pp
index e27e40c..11ba480 100644
--- a/manifests/tor.pp
+++ b/manifests/tor.pp
@@ -1,3 +1,4 @@
class nodo::tor inherits nodo::vserver {
include tor::daemon
+ include utils::tor
}