summaryrefslogtreecommitdiffstats
path: root/playbooks
diff options
context:
space:
mode:
authorRussell Teague <rteague@redhat.com>2017-02-21 11:56:52 -0500
committerGitHub <noreply@github.com>2017-02-21 11:56:52 -0500
commit814b1117039c353fca9a3282f6c424200373df75 (patch)
treea2c61214ae07a534cac44d0c3e1239ad6fbe9a75 /playbooks
parentd20b6a940d13f5676a60af53550354c6a9b965d2 (diff)
parentacd81e1057524a244162653d609b58d55485112f (diff)
downloadopenshift-814b1117039c353fca9a3282f6c424200373df75.tar.gz
openshift-814b1117039c353fca9a3282f6c424200373df75.tar.bz2
openshift-814b1117039c353fca9a3282f6c424200373df75.tar.xz
openshift-814b1117039c353fca9a3282f6c424200373df75.zip
Merge pull request #3421 from jhadvig/registred-cmd
rename registered mktemp command
Diffstat (limited to 'playbooks')
-rw-r--r--playbooks/common/openshift-node/config.yml20
1 files changed, 0 insertions, 20 deletions
diff --git a/playbooks/common/openshift-node/config.yml b/playbooks/common/openshift-node/config.yml
index 308a8959d..933fd584d 100644
--- a/playbooks/common/openshift-node/config.yml
+++ b/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