summaryrefslogtreecommitdiffstats
path: root/roles/taskotron
diff options
context:
space:
mode:
authorTim Flink <tflink@fedoraproject.org>2017-04-06 03:54:40 +0000
committerTim Flink <tflink@fedoraproject.org>2017-04-06 03:54:40 +0000
commite727850587ef69a09c3234666bda6a18ca357b03 (patch)
tree63517dbf544170ef95e476efa33d22a02f362c27 /roles/taskotron
parent7437d0fa81116f61b4f438cc50ce188a526e80ce (diff)
downloadansible-e727850587ef69a09c3234666bda6a18ca357b03.tar.gz
ansible-e727850587ef69a09c3234666bda6a18ca357b03.tar.xz
ansible-e727850587ef69a09c3234666bda6a18ca357b03.zip
changing branch var for distgit builder for trigger update
Diffstat (limited to 'roles/taskotron')
-rw-r--r--roles/taskotron/buildmaster-configure/templates/taskotron.master.cfg.j24
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/taskotron/buildmaster-configure/templates/taskotron.master.cfg.j2 b/roles/taskotron/buildmaster-configure/templates/taskotron.master.cfg.j2
index 5134bc97c..8ea9526b1 100644
--- a/roles/taskotron/buildmaster-configure/templates/taskotron.master.cfg.j2
+++ b/roles/taskotron/buildmaster-configure/templates/taskotron.master.cfg.j2
@@ -256,14 +256,14 @@ distgit_factory.addStep(ShellCommand(command=Interpolate("rm -rf /var/tmp/taskot
{% if deployment_type in ['dev', 'prod'] %}
# check out the source from prod dist-git
distgit_factory.addStep(Git(repourl=Property('repo', default=Interpolate('http://pkgs02.phx2.fedoraproject.org/rpms/{}/'.format("%(prop:item)s".split('-')[0]))),
- branch=Property('branch', default='master'),
+ branch=Property('git_branch', default='master'),
mode='full',
method='clobber',
shallow=True))
{% else %}
# check out the source from stg dist-git
distgit_factory.addStep(Git(repourl=Property('repo', default=Interpolate('http://pkgs01.stg.phx2.fedoraproject.org/rpms/{}/'.format("%(prop:item)s".split('-')[0]))),
- branch=Property('Branch', default='master'),
+ branch=Property('git_branch', default='master'),
mode='full',
method='clobber',
shallow=True))