summaryrefslogtreecommitdiff
path: root/manifests/repo/debian.pp
diff options
context:
space:
mode:
authorduritong <peter.meier+github@immerda.ch>2014-03-20 16:51:06 +0100
committerduritong <peter.meier+github@immerda.ch>2014-03-20 16:51:06 +0100
commit2ad5ae93fe724f397bb6f1ca9761ccce2cd42f37 (patch)
tree679b0c264bb9dfb71be99e50a432ab1084d73f15 /manifests/repo/debian.pp
parent0a7fa2d5ec783a0c72dc2484c0e5958ec281db1f (diff)
parent4cafc1d59433d216eec2a006a3fc793400aff90f (diff)
Merge pull request #10 from pataquets/add-tor-repo-class
Add tor::repo class with apt::source from torproject.org.
Diffstat (limited to 'manifests/repo/debian.pp')
-rw-r--r--manifests/repo/debian.pp9
1 files changed, 9 insertions, 0 deletions
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,
+ }
+}