mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-10 04:42:31 +01:00
dup & rdiff: fixed * expansion in e-mails
This commit is contained in:
parent
79cc6a73b3
commit
c1c28e7032
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user