Skip to content
Snippets Groups Projects
Commit 20adb604 authored by Spencer Smith's avatar Spencer Smith
Browse files

confirmed working change to mktemp command

parent 57a1ce28
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ if [ -z ${SSLDIR} ]; then
SSLDIR="/etc/kubernetes/certs"
fi
tmpdir=$(mktemp -d --tmpdir kubernetes_cacert.XXXXXX)
tmpdir=$(mktemp -d /tmp/kubernetes_cacert.XXXXXX)
trap 'rm -rf "${tmpdir}"' EXIT
cd "${tmpdir}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment