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

Unified Diff: modules/web/manifests/server.pp

Issue 29526640: #3044 - Introduce class adblockplus::mercurial (Closed)
Patch Set: For comment 5 Created Aug. 24, 2017, 6:37 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 | « modules/private-stub/hiera/base.yaml ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/web/manifests/server.pp
===================================================================
--- a/modules/web/manifests/server.pp
+++ b/modules/web/manifests/server.pp
@@ -1,6 +1,7 @@
class web::server(
$vhost,
$repository,
+ $remote = "https://hg.adblockplus.org/${repository}",
$certificate = hiera('web::server::certificate', 'undef'),
$private_key = hiera('web::server::private_key', 'undef'),
$is_default = false,
@@ -12,6 +13,7 @@
include sitescripts
include adblockplus::web
+ include adblockplus::mercurial
$pythonpath = 'PYTHONPATH=/opt/cms:/opt/sitescripts'
@@ -112,7 +114,7 @@
exec {"fetch_cms":
command => shellquote($fetch_cms_cmd),
- require => Package['mercurial'],
+ require => Class['adblockplus::mercurial'],
timeout => 0,
creates => "/opt/cms/.hg/hgrc",
}
@@ -120,13 +122,13 @@
$fetch_repo_cmd = [
'hg', 'clone',
'--noupdate',
- "https://hg.adblockplus.org/${repository}",
+ $remote,
"/home/www/${repository}",
]
exec {"fetch_repo":
command => shellquote($fetch_repo_cmd),
- require => Package['mercurial'],
+ require => Class['adblockplus::mercurial'],
user => www,
timeout => 0,
creates => "/home/www/${repository}/.hg/hgrc",
« no previous file with comments | « modules/private-stub/hiera/base.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld