summaryrefslogtreecommitdiff
path: root/manifests/repo.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2016-08-25 10:26:40 -0400
committerMicah Anderson <micah@riseup.net>2016-08-25 10:26:40 -0400
commit49b67cbc9112fddf49cc12264d2626fd952e0a7c (patch)
treee20311cd395d383fe145b93c6f388a466fd6d0de /manifests/repo.pp
parent687dccf2b5b99ea5b4f2fdfb115295ccff9a1c1a (diff)
Fixes for puppet lint
Diffstat (limited to 'manifests/repo.pp')
-rw-r--r--manifests/repo.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/repo.pp b/manifests/repo.pp
index f625599..9549219 100644
--- a/manifests/repo.pp
+++ b/manifests/repo.pp
@@ -1,3 +1,4 @@
+# setup repository for tor
class tor::repo (
$ensure = present,
$source_name = 'torproject.org',
@@ -10,7 +11,7 @@ class tor::repo (
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")
+ fail("Unsupported managed repository for osfamily: ${::osfamily}, operatingsystem: ${::operatingsystem}, module ${module_name} currently only supports managing repos for osfamily Debian and Ubuntu") # lint:ignore:80chars
}
}
}