dup: set secure permissions on tmpdir when creating it

This commit is contained in:
intrigeri 2008-06-25 09:54:45 +00:00
parent bc8d817218
commit 788e82b56a
2 changed files with 3 additions and 2 deletions

View File

@ -21,8 +21,8 @@ version 0.9.6 -- unreleased
new syntax.
. Support every duplicity-supported transport with new configuration
option desturl (Closes: #483712, #346040, Trac#2).
.
Actually allow to backup only VServers, by relaxing $include test.
. Actually allow to backup only VServers, by relaxing $include test.
. Set secure permissions on tmpdir when creating it.
ldap:
. support HDB backend just as the BDB one, and make message clearer
when no supported backend is found (Closes: #476910)

View File

@ -166,6 +166,7 @@ if [ -n "$tmpdir" ]; then
info "Temporary directory ($tmpdir) does not exist, creating it."
mkdir -p "$tmpdir"
[ $? -eq 0 ] || fatal "Could not create temporary directory ($tmpdir)."
chmod 0700 "$tmpdir"
fi
info "Using $tmpdir as TMPDIR"
precmd="${precmd}TMPDIR=$tmpdir "