diff options
| author | intrigeri <intrigeri@boum.org> | 2008-06-25 09:54:45 +0000 | 
|---|---|---|
| committer | intrigeri <intrigeri@boum.org> | 2008-06-25 09:54:45 +0000 | 
| commit | 788e82b56a4bdd1758e9887788b8fb818c9850a3 (patch) | |
| tree | a11281561600c8064f52756eeba186ae1a229840 | |
| parent | bc8d8172189797e429549cac994b9cbfd2f6a52f (diff) | |
| download | backupninja-788e82b56a4bdd1758e9887788b8fb818c9850a3.tar.gz backupninja-788e82b56a4bdd1758e9887788b8fb818c9850a3.tar.bz2 | |
dup: set secure permissions on tmpdir when creating it
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | handlers/dup.in | 1 | 
2 files changed, 3 insertions, 2 deletions
| @@ -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) diff --git a/handlers/dup.in b/handlers/dup.in index 2854974..89db671 100644 --- a/handlers/dup.in +++ b/handlers/dup.in @@ -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 " | 
