Browse Source

Merge pull request #6696 from sdodson/bz1532973

Add missing task that got dropped in a refactor
Scott Dodson 7 years ago
parent
commit
6c6529d4f0
1 changed files with 13 additions and 0 deletions
  1. 13 0
      roles/openshift_hosted/tasks/storage/glusterfs_endpoints.yml

+ 13 - 0
roles/openshift_hosted/tasks/storage/glusterfs_endpoints.yml

@@ -1,4 +1,10 @@
 ---
+- name: Create temp directory for doing work in
+  command: mktemp -d /tmp/openshift-hosted-ansible-XXXXXX
+  register: mktempHosted
+  changed_when: False
+  check_mode: no
+
 - name: Generate GlusterFS registry endpoints
   template:
     src: "{{ openshift.common.examples_content_version }}/glusterfs-registry-endpoints.yml.j2"
@@ -14,3 +20,10 @@
   with_items:
   - "{{ mktempHosted.stdout }}/glusterfs-registry-service.yml"
   - "{{ mktempHosted.stdout }}/glusterfs-registry-endpoints.yml"
+
+- name: Delete temp directory
+  file:
+    name: "{{ mktempHosted.stdout }}"
+    state: absent
+  changed_when: False
+  check_mode: no