workaround mktemp -u checking for write access

Signed-off-by: Steven Armstrong <steven@armstrong.cc>
This commit is contained in:
Steven Armstrong 2022-04-14 00:16:10 +02:00
parent af54fe6feb
commit 6f8c774cb0
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ if [ "$state_should" = "present" ] || [ "$state_should" = "exists" ]; then
touch "$__object/files/set-attributes"
# upload file to temp location
upload_destination="$(mktemp -u "${destination}.cdist.XXXXXXXXXX")"
upload_destination="$(mktemp -u "/__cdist${destination}.cdist.XXXXXXXXXX" | sed 's|^/__cdist||')"
# Yes, we are aware that this is a race condition.
# However:
# a) cdist usually writes to directories that are not user writable