summaryrefslogtreecommitdiffstats
path: root/playbooks
diff options
context:
space:
mode:
authorJason DeTiberus <jdetiber@redhat.com>2015-04-15 09:40:38 -0400
committerJason DeTiberus <jdetiber@redhat.com>2015-04-15 09:40:38 -0400
commit34326ef782bcba8632738a40d3948bb23a3915dc (patch)
tree7c7f4fca90dd92c21374db0994f77616a9cccc50 /playbooks
parent6a4b7a5eb6c4b5e747bab795e2428d7c3992f559 (diff)
downloadopenshift-34326ef782bcba8632738a40d3948bb23a3915dc.tar.gz
openshift-34326ef782bcba8632738a40d3948bb23a3915dc.tar.bz2
openshift-34326ef782bcba8632738a40d3948bb23a3915dc.tar.xz
openshift-34326ef782bcba8632738a40d3948bb23a3915dc.zip
fix missed absolute path reference to mktemp
Diffstat (limited to 'playbooks')
-rw-r--r--playbooks/libvirt/openshift-cluster/tasks/configure_libvirt_network.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/libvirt/openshift-cluster/tasks/configure_libvirt_network.yml b/playbooks/libvirt/openshift-cluster/tasks/configure_libvirt_network.yml
index 1cd83f7be..a320e681e 100644
--- a/playbooks/libvirt/openshift-cluster/tasks/configure_libvirt_network.yml
+++ b/playbooks/libvirt/openshift-cluster/tasks/configure_libvirt_network.yml
@@ -6,7 +6,7 @@
failed_when: "net_info_result.rc != 0 and 'error: Network not found:' not in net_info_result.stderr"
- name: Create a temp directory for the template xml file
- command: "/usr/bin/mktemp -d /tmp/openshift-ansible-XXXXXXX"
+ command: "mktemp -d /tmp/openshift-ansible-XXXXXXX"
register: mktemp
when: net_info_result.rc == 1