Andrew Hutchings e4f253527d Fix stupid quote typo
When migrating this patch from my test server I forgot to change the quotes and used the wrong variable, doh!

Change-Id: Ic395cc434088e010e0d43c488ed2ccb66e6aea02
2012-05-15 15:19:50 +01:00

9 lines
264 B
Puppet

define process_projects($site) {
exec { "jenkins_job_${name}":
command => "python /usr/local/jenkins_jobs/jenkins_jobs.py update /usr/local/jenkins_jobs/projects/${site}/${name}.yml",
cwd => '/usr/local/jenkins_jobs/',
path => '/bin:/usr/bin'
}
}