mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-08 20:02:32 +01:00
dup: set secure permissions on tmpdir when creating it
This commit is contained in:
parent
bc8d817218
commit
788e82b56a
@ -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)
|
||||
|
@ -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 "
|
||||
|
Loading…
Reference in New Issue
Block a user