aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/network/tor.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/utils/network/tor.pp')
-rw-r--r--manifests/utils/network/tor.pp13
1 files changed, 13 insertions, 0 deletions
diff --git a/manifests/utils/network/tor.pp b/manifests/utils/network/tor.pp
new file mode 100644
index 0000000..88c29ce
--- /dev/null
+++ b/manifests/utils/network/tor.pp
@@ -0,0 +1,13 @@
+# This class currently only manages the repository definition and key
+# Use the "tor" or "onion" modules to manage package installation and service configuration
+class nodo::utils::network::tor {
+ nodo::subsystem::apt::repo { 'torproject.org':
+ definition => "deb [signed-by=/etc/apt/trusted.gpg.d/torproject.org.gpg] https://deb.torproject.org/torproject.org ${::lsbdistcodename} main",
+ key_source => 'puppet:///modules/nodo/etc/apt/trusted.gpg.d/torproject.org.gpg',
+ }
+
+ package { "deb.torproject.org-keyring":
+ ensure => present,
+ require => Nodo::Subsystem::Apt::Repo['torproject.org'],
+ }
+}