diff options
author | Jason DeTiberus <jdetiber@redhat.com> | 2015-04-15 11:08:09 -0400 |
---|---|---|
committer | Jason DeTiberus <jdetiber@redhat.com> | 2015-04-20 23:52:03 -0400 |
commit | 3a49a125d8a34ac1dce3eb56f1de0cb4c415a9a8 (patch) | |
tree | 13f7e121a9dce8597274c9efc23b030963fbab89 /playbooks/common | |
parent | 96dd0ab929b7f391eee9b23209aa377537114b72 (diff) | |
download | openshift-3a49a125d8a34ac1dce3eb56f1de0cb4c415a9a8.tar.gz openshift-3a49a125d8a34ac1dce3eb56f1de0cb4c415a9a8.tar.bz2 openshift-3a49a125d8a34ac1dce3eb56f1de0cb4c415a9a8.tar.xz openshift-3a49a125d8a34ac1dce3eb56f1de0cb4c415a9a8.zip |
Fix common node config playbook when ansible is run on the first master
Diffstat (limited to 'playbooks/common')
-rw-r--r-- | playbooks/common/openshift-node/config.yml | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/playbooks/common/openshift-node/config.yml b/playbooks/common/openshift-node/config.yml index c82d69c28..75eb5ae1b 100644 --- a/playbooks/common/openshift-node/config.yml +++ b/playbooks/common/openshift-node/config.yml @@ -69,12 +69,6 @@ with_items: openshift_nodes changed_when: False - - name: Remove the temp directory on the master - file: - path: "{{ sync_tmpdir }}" - state: absent - changed_when: False - - name: Configure node instances hosts: oo_nodes_to_config @@ -103,8 +97,17 @@ group_by: key=oo_nodes_deployment_type_{{ openshift.common.deployment_type }} changed_when: False +- name: Delete the temporary directory on the master + hosts: oo_first_master + gather_facts: no + vars: + sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}" + tasks: + - file: name={{ sync_tmpdir }} state=absent + changed_when: False + -- name: Delete temporary directory +- name: Delete temporary directory on localhost hosts: localhost gather_facts: no tasks: |