e4f253527d
When migrating this patch from my test server I forgot to change the quotes and used the wrong variable, doh! Change-Id: Ic395cc434088e010e0d43c488ed2ccb66e6aea02
9 lines
264 B
Puppet
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'
|
|
}
|
|
|
|
}
|