summaryrefslogtreecommitdiffstats
path: root/playbooks
diff options
context:
space:
mode:
authorjhadvig <jhadvig@redhat.com>2017-02-20 13:25:18 +0100
committerjhadvig <jhadvig@redhat.com>2017-02-21 16:46:33 +0100
commitacd81e1057524a244162653d609b58d55485112f (patch)
tree1055debd5213e76a6e97b338462204ebbe15632f /playbooks
parent0cdca379b1d2fa3b36a01ec129ce6303fc31fe97 (diff)
downloadopenshift-acd81e1057524a244162653d609b58d55485112f.tar.gz
openshift-acd81e1057524a244162653d609b58d55485112f.tar.bz2
openshift-acd81e1057524a244162653d609b58d55485112f.tar.xz
openshift-acd81e1057524a244162653d609b58d55485112f.zip
Remove unused plays
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