2eee43e627
In run_all, we start a bunch of plays in sequence, but it's difficult to tell what they're doing until you see the tasks. Name the plays themselves to produce a better narrative structure. Change-Id: I0597eab2c06c6963601dec689714c38101a4d470
14 lines
350 B
YAML
14 lines
350 B
YAML
- hosts: 'puppet4'
|
|
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
|
|
environment:
|
|
PUPPET_VERSION: 4
|