aboutsummaryrefslogtreecommitdiff
path: root/handlers
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2006-06-04 00:43:00 +0000
committerintrigeri <intrigeri@boum.org>2006-06-04 00:43:00 +0000
commitc1c28e70326ebf75b37d0594df88adaf24045187 (patch)
tree8b4ed3e9cf2ce10096b1448a3094158960b88a0a /handlers
parent79cc6a73b3027dbc159f1d5fe8e9b8b05b7b6c19 (diff)
downloadbackupninja-c1c28e70326ebf75b37d0594df88adaf24045187.tar.gz
backupninja-c1c28e70326ebf75b37d0594df88adaf24045187.tar.bz2
dup & rdiff: fixed * expansion in e-mails
Diffstat (limited to 'handlers')
-rw-r--r--handlers/dup6
-rw-r--r--handlers/rdiff6
2 files changed, 6 insertions, 6 deletions
diff --git a/handlers/dup b/handlers/dup
index 715427c..b4a7c9d 100644
--- a/handlers/dup
+++ b/handlers/dup
@@ -138,7 +138,7 @@ for i in $exclude; do
if [ -n "$str" ]; then
execstr="${execstr}--exclude '$str' "
else
- warning "exclude statement ${i//__star__/*} will be ignored. $symlinks_warning"
+ warning "exclude statement '${i//__star__/*}' will be ignored. $symlinks_warning"
fi
done
@@ -150,7 +150,7 @@ for i in $include; do
if [ -n "$str" ]; then
execstr="${execstr}--include '$str' "
else
- warning "include statement ${i//__star__/*} will be ignored. $symlinks_warning"
+ warning "include statement '${i//__star__/*}' will be ignored. $symlinks_warning"
fi
done
@@ -163,7 +163,7 @@ if [ $usevserver = yes ]; then
if [ -n "$str" ]; then
execstr="${execstr}--include '$str' "
else
- warning "vsinclude statement ${vi//__star__/*} will be ignored for VServer $vserver. $symlinks_warning"
+ warning "vsinclude statement '${vi//__star__/*}' will be ignored for VServer $vserver. $symlinks_warning"
fi
done
done
diff --git a/handlers/rdiff b/handlers/rdiff
index 8f0edfb..88aeaf3 100644
--- a/handlers/rdiff
+++ b/handlers/rdiff
@@ -182,7 +182,7 @@ for i in $exclude; do
if [ -n "$str" ]; then
execstr="${execstr}--exclude '$str' "
else
- warning "exclude statement ${i//__star__/*} will be ignored. $symlinks_warning"
+ warning "exclude statement '${i//__star__/*}' will be ignored. $symlinks_warning"
fi
done
# includes
@@ -193,7 +193,7 @@ for i in $include; do
if [ -n "$str" ]; then
execstr="${execstr}--include '$str' "
else
- warning "include statement ${i//__star__/*} will be ignored. $symlinks_warning"
+ warning "include statement '${i//__star__/*}' will be ignored. $symlinks_warning"
fi
done
@@ -206,7 +206,7 @@ if [ $usevserver = yes ]; then
if [ -n "$str" ]; then
execstr="${execstr}--include '$str' "
else
- warning "vsinclude statement ${vi//__star__/*} will be ignored for VServer $vserver. $symlinks_warning"
+ warning "vsinclude statement '${vi//__star__/*}' will be ignored for VServer $vserver. $symlinks_warning"
fi
done
done