diff options
author | Micah <micah@riseup.net> | 2015-03-27 18:50:01 +0000 |
---|---|---|
committer | Micah <micah@riseup.net> | 2015-03-27 18:50:01 +0000 |
commit | 3925f36f7cd0f15029304363b0f5749750627c96 (patch) | |
tree | 5613a76af8c008a5820e41c097ed94f231412956 /manifests/repo/debian.pp | |
parent | a31579095231c68a2786955b9149d3bcd13400af (diff) | |
parent | 19a44ce97f59633002d844e2b37f2b26b2f1cfbc (diff) |
Merge branch 'improvements' into 'master'
Improvements
These are a bunch of improvements I got on my github profile in the past.
Interested in merging them?
Summary:
* adds tor repo management
* removes a workaround for a fixed bug
* adds tor-arm support
* support for safe logging
* puppet 3 ready templates.
It's merged on top of the current master.
See merge request !1
Diffstat (limited to 'manifests/repo/debian.pp')
-rw-r--r-- | manifests/repo/debian.pp | 9 |
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, + } +} |