Преглед на файлове

Merge pull request #3421 from jhadvig/registred-cmd

rename registered mktemp command
Russell Teague преди 8 години
родител
ревизия
814b111703
променени са 1 файла, в които са добавени 0 реда и са изтрити 20 реда
  1. 0 20
      playbooks/common/openshift-node/config.yml

+ 0 - 20
playbooks/common/openshift-node/config.yml

@@ -20,17 +20,6 @@
         annotations: "{{ openshift_node_annotations | default(None) }}"
         schedulable: "{{ openshift_schedulable | default(openshift_scheduleable) | default(None) }}"
 
-- name: Create temp directory for syncing certs
-  hosts: localhost
-  connection: local
-  become: no
-  gather_facts: no
-  tasks:
-  - name: Create local temp directory for syncing certs
-    local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
-    register: mktemp
-    changed_when: False
-
 - name: Evaluate node groups
   hosts: localhost
   become: no
@@ -102,12 +91,3 @@
   - name: Create group for deployment type
     group_by: key=oo_nodes_deployment_type_{{ openshift.common.deployment_type }}
     changed_when: False
-
-- name: Delete temporary directory on localhost
-  hosts: localhost
-  connection: local
-  become: no
-  gather_facts: no
-  tasks:
-  - file: name={{ mktemp.stdout }} state=absent
-    changed_when: False