From 0727a5b3a699610a9cf3dc9d9198d8c2330ba7c2 Mon Sep 17 00:00:00 2001 From: Colleen Murphy Date: Sun, 3 Feb 2019 12:25:04 +0100 Subject: [PATCH] Fix update_puppet_version playbook Updating the system-config git checkout was not working correctly. Since we don't need the whole repo anyway, just retrieve the install_puppet.sh script. Change-Id: If83482eacdb303ea4fc3fe453818ea435ed062dc --- playbooks/update_puppet_version.yaml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/playbooks/update_puppet_version.yaml b/playbooks/update_puppet_version.yaml index f52b49d1be..b69edd5d3c 100644 --- a/playbooks/update_puppet_version.yaml +++ b/playbooks/update_puppet_version.yaml @@ -2,12 +2,11 @@ name: "Puppet-version: install puppet-4 on puppet-4 hosts" gather_facts: false tasks: - - git: - repo: https://git.openstack.org/openstack-infra/system-config - dest: /opt/system-config - force: yes - - shell: ./install_puppet.sh - args: - chdir: /opt/system-config + - get_url: + url: http://git.openstack.org/cgit/openstack-infra/system-config/plain/install_puppet.sh + dest: /tmp/install_puppet.sh + mode: 0755 + checksum: sha256:741b8cfdc039e817bd598511dd7203da16701f213775e639994e8bb278a68239 + - shell: /tmp/install_puppet.sh environment: PUPPET_VERSION: 4