diff options
author | intrigeri <intrigeri@boum.org> | 2006-06-04 00:36:33 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2006-06-04 00:36:33 +0000 |
commit | 79cc6a73b3027dbc159f1d5fe8e9b8b05b7b6c19 (patch) | |
tree | ace3bf4908934b9e70bb093b76b22665c34a2f48 | |
parent | 8042abbba028fbe3380cb62dc8b41ee7c2aa94fd (diff) | |
download | backupninja-79cc6a73b3027dbc159f1d5fe8e9b8b05b7b6c19.tar.gz backupninja-79cc6a73b3027dbc159f1d5fe8e9b8b05b7b6c19.tar.bz2 |
dup: now forbid to (try to) backup /
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | handlers/dup | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -33,6 +33,7 @@ version 0.9.4 -- unreleased any passphrase . Support duplicity 0.4.2 (with Debian patches applied; upstream's 0.4.3 will integrate them) + . Now forbid to (try to) include /. sys: . Many more system checks were added, thanks to Petr Klíma lib changes diff --git a/handlers/dup b/handlers/dup index c16ec40..715427c 100644 --- a/handlers/dup +++ b/handlers/dup @@ -144,6 +144,7 @@ done # includes for i in $include; do + [ "$i" != "/" ] || fatal "Sorry, you cannot use 'include = /'" str="${i//__star__/*}" str=`readlink -f $str` if [ -n "$str" ]; then |