diff options
author | Tim Flink <tflink@fedoraproject.org> | 2017-04-12 20:04:29 +0000 |
---|---|---|
committer | Tim Flink <tflink@fedoraproject.org> | 2017-04-12 20:04:40 +0000 |
commit | 06a44a1062bc84d9eb28e0f6de29077adc2d1be2 (patch) | |
tree | 57410d54c7992e4101dab32d4ec984cae12ecfa9 | |
parent | c5f8f1b84efff239ccf6d2f1daa6229fcdbcc9af (diff) | |
download | ansible-06a44a1062bc84d9eb28e0f6de29077adc2d1be2.tar.gz ansible-06a44a1062bc84d9eb28e0f6de29077adc2d1be2.tar.xz ansible-06a44a1062bc84d9eb28e0f6de29077adc2d1be2.zip |
correct git repo in taskotron master config
-rw-r--r-- | roles/taskotron/buildmaster-configure/templates/taskotron.master.cfg.j2 | 4 |
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 8ea9526b1..0c6412fea 100644 --- a/roles/taskotron/buildmaster-configure/templates/taskotron.master.cfg.j2 +++ b/roles/taskotron/buildmaster-configure/templates/taskotron.master.cfg.j2 @@ -255,14 +255,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]))), +distgit_factory.addStep(Git(repourl=Property('git_repo', default=Interpolate('http://pkgs02.phx2.fedoraproject.org/rpms/{}/'.format("%(prop:item)s".split('-')[0]))), 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]))), +distgit_factory.addStep(Git(repourl=Property('git_repo', default=Interpolate('http://pkgs01.stg.phx2.fedoraproject.org/rpms/{}/'.format("%(prop:item)s".split('-')[0]))), branch=Property('git_branch', default='master'), mode='full', method='clobber', |