diff options
author | intrigeri <intrigeri@boum.org> | 2005-11-29 10:07:07 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2005-11-29 10:07:07 +0000 |
commit | a4ae4e5c6e73a5fd22c7e61441ec87f55986a8d6 (patch) | |
tree | 14135c1a37339d77a0d10d2f196e79d09cc37b01 | |
parent | 55e82aa215409a92d8af775c8e2a70b068c50419 (diff) | |
download | backupninja-a4ae4e5c6e73a5fd22c7e61441ec87f55986a8d6.tar.gz backupninja-a4ae4e5c6e73a5fd22c7e61441ec87f55986a8d6.tar.bz2 |
r3546@krups: intrigeri | 2005-11-14 20:32:59 +0100
Fix: used to expand '*' in default source directories
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | handlers/rdiff.helper | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,7 @@ version 0.9.2 -- unreleased fixed missing makecd.helper in Makefile.am/.in + rdiff ninjahelper bugfixed: + used to expand '*' in default source directories version 0.9.1 -- November 05 2005 rearranged source so that it is relocatable with autotools @@ -52,7 +54,7 @@ version 0.8 -- September 15 2005 now checks if "postgres" user exists on the host/vserver. changes to ninjahelper check_perms() does not die anymore on group/world readable - helper scripts (now consistent with the "helper scripts + helper scripts (now consistent with the "helper scripts must not be group or world writable!" error msg). xedit action now tries $EDITOR, then /etc/alternatives/editor, then nano, vim and vi, and aborts if none of these exists. diff --git a/handlers/rdiff.helper b/handlers/rdiff.helper index 0bd982c..91d715e 100644 --- a/handlers/rdiff.helper +++ b/handlers/rdiff.helper @@ -294,8 +294,10 @@ rdiff_wizard() { rdiff_directory=/backup/`hostname` rdiff_user= rdiff_host= + set -o noglob rdiff_includes=(/var/spool/cron/crontabs /var/backups /etc /root /home /usr/local/*bin /var/lib/dpkg/status*) rdiff_excludes=(/home/*/.gnupg) + set +o noglob rdiff_main_menu } |