Skip to content
Snippets Groups Projects
Commit ec64eda2 authored by Antoine Legrand's avatar Antoine Legrand
Browse files

Merge pull request #152 from rsmitty/issue-151

confirmed working change to mktemp command
parents 57a1ce28 20adb604
Branches
Tags
No related merge requests found
...@@ -54,7 +54,7 @@ if [ -z ${SSLDIR} ]; then ...@@ -54,7 +54,7 @@ if [ -z ${SSLDIR} ]; then
SSLDIR="/etc/kubernetes/certs" SSLDIR="/etc/kubernetes/certs"
fi fi
tmpdir=$(mktemp -d --tmpdir kubernetes_cacert.XXXXXX) tmpdir=$(mktemp -d /tmp/kubernetes_cacert.XXXXXX)
trap 'rm -rf "${tmpdir}"' EXIT trap 'rm -rf "${tmpdir}"' EXIT
cd "${tmpdir}" cd "${tmpdir}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment