aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2014-04-18 11:10:29 +0200
committermh <mh@immerda.ch>2014-04-18 11:10:29 +0200
commit8a248e676cf03ceffefe36dddb604754c2236085 (patch)
tree9482268602247d365178fe431d3206a39ca5daa6
parent5228a3d6bd2fce2e56bea538bd9c29641cf22474 (diff)
parent2ad5ae93fe724f397bb6f1ca9761ccce2cd42f37 (diff)
downloadpuppet-tor-8a248e676cf03ceffefe36dddb604754c2236085.tar.gz
puppet-tor-8a248e676cf03ceffefe36dddb604754c2236085.tar.bz2
Merge remote-tracking branch 'githubmirror/master'
-rw-r--r--manifests/repo.pp16
-rw-r--r--manifests/repo/debian.pp9
2 files changed, 25 insertions, 0 deletions
diff --git a/manifests/repo.pp b/manifests/repo.pp
new file mode 100644
index 0000000..f625599
--- /dev/null
+++ b/manifests/repo.pp
@@ -0,0 +1,16 @@
+class tor::repo (
+ $ensure = present,
+ $source_name = 'torproject.org',
+ $include_src = false,
+) {
+ case $::osfamily {
+ 'Debian': {
+ $key = '886DDD89'
+ $location = 'https://deb.torproject.org/torproject.org/'
+ class { 'tor::repo::debian': }
+ }
+ default: {
+ fail("Unsupported managed repository for osfamily: ${::osfamily}, operatingsystem: ${::operatingsystem}, module ${module_name} currently only supports managing repos for osfamily Debian and Ubuntu")
+ }
+ }
+}
diff --git a/manifests/repo/debian.pp b/manifests/repo/debian.pp
new file mode 100644
index 0000000..174c331
--- /dev/null
+++ b/manifests/repo/debian.pp
@@ -0,0 +1,9 @@
+# PRIVATE CLASS: do not use directly
+class tor::repo::debian inherits tor::repo {
+ apt::source { $source_name:
+ ensure => $::tor::repo::ensure,
+ location => $::tor::repo::location,
+ key => $::tor::repo::key,
+ include_src => $::tor::repo::include_src,
+ }
+}