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

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

Issue 5988173083574272: Issue 1805 - ensure_dependencies.py needs to be called after updating sitescripts repository (Closed)
Patch Set: Changed call parameters now that #1806 and #1807 are resolved Created Jan. 15, 2015, 10:56 a.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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/sitescripts/manifests/init.pp
===================================================================
--- a/modules/sitescripts/manifests/init.pp
+++ b/modules/sitescripts/manifests/init.pp
@@ -30,14 +30,14 @@ class sitescripts (
command => "hg clone https://hg.adblockplus.org/sitescripts /opt/sitescripts",
path => ["/usr/bin/", "/bin/"],
require => Package['mercurial'],
onlyif => "test ! -d /opt/sitescripts"
}
cron {"update_sitescripts":
ensure => present,
- command => "hg pull -q -u -R /opt/sitescripts",
+ command => "hg pull -q -u -R /opt/sitescripts && /opt/sitescripts/ensure_dependencies.py -q",
environment => ['MAILTO=admins@adblockplus.org,root'],
user => root,
require => Exec["fetch_sitescripts"],
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld