Changed the name of the function to get a remote temporary filename,
need to update all the locations where it gets called.
Signed-off-by: Sam Lang <sam.lang@inktank.com>
# get a temp file path on the remote host to write to,
# we don't want to blow away the remote file and then have the
# network drop out
- temp_file_path = get_remote_tempnam(remote)
+ temp_file_path = remote_mktemp(remote)
# write out the data to a temp file
write_file(remote, temp_file_path, out_data)