Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: modules/hgweb/manifests/init.pp

Issue 29337790: Issue 3676 - Configure update_issues hook (Closed)
Patch Set: Address comment Created Feb. 26, 2016, 6:52 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | modules/hgweb/templates/sitescripts.ini.erb » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/hgweb/manifests/init.pp
===================================================================
--- a/modules/hgweb/manifests/init.pp
+++ b/modules/hgweb/manifests/init.pp
@@ -21,29 +21,34 @@
#
# [*hgaccess*]
# A prototype directory source for the hgaccess repository.
#
# [*templates*]
# A directory providing custom /static/ resources to be used instead
# of the ones that ship with package mercurial.
#
+# [*trac_abpbot_password*]
+# The password of the Trac user "abpbot", whose credentials are used to
+# interact with issues.adblockplus.org.
+#
# === Examples:
#
# class {'hgweb':
# domain => 'localhost',
# }
#
class hgweb(
$domain,
$is_default = false,
$certificate = hiera('hgweb::certificate', 'undef'),
$private_key = hiera('hgweb::private_key', 'undef'),
$hgaccess = 'puppet:///modules/hgweb/hgaccess',
$templates = hiera('hgweb::templates', '/usr/share/mercurial/templates'),
+ $trac_abpbot_password = hiera('hgweb::trac_abpbot_password', 'abpbot'),
) {
include ssh, nginx
$required_packages = ['mercurial-common', 'python-flup', 'spawn-fcgi']
ensure_packages($required_packages)
class {'sitescripts':
« no previous file with comments | « no previous file | modules/hgweb/templates/sitescripts.ini.erb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld