Daniel.Bonniot@inria.fr
Brad Fritz <brad@fritzfam.com> -- trac patch
garcondumonde@riseup.net
-Martin Krafft madduck@debian.org -- admingroup patch
\ No newline at end of file
+Martin Krafft madduck@debian.org -- admingroup patch
+Anarcat
vserver:
. init_vservers: fixed Debian bug #351083 (improper readlink syntax)
. found_vservers: escaped special grep repetition character +
+ . forced mktemp to use a template with a name to be more compatible with
+ different versions of mktemp, thanks anarcat
ninjahelper changes
. Recursively ignore subdirs in /etc/backup.d (Closes: #361102)
. Fix configdirectory error that forced you to use /etc/backup.d, thanks anarcat
}
inputBox() {
- local temp=$(mktemp -t) || exit 1
+ local temp=$(mktemp -t backupninja.XXXXXX) || exit 1
trap "rm -f $temp" 0
REPLY=
$DIALOG --backtitle "$BACKTITLE" --title "$1" \
local title=$1
local text=$2
shift 2
- local temp=$(mktemp -t) || exit 1
+ local temp=$(mktemp -t backupninja.XXXXXX) || exit 1
trap "rm -f $temp" 0
REPLY=
$DIALOG $HELP $_DEFAULT --backtitle "$BACKTITLE" --title "$title" \
}
passwordBox() {
- local temp=$(mktemp -t) || exit 1
+ local temp=$(mktemp -t backupninja.XXXXXX) || exit 1
trap "rm -f $temp" 0
REPLY=
$DIALOG --backtitle "$BACKTITLE" --title "$1" \
##
listDisplay() {
boxtype=$1
- local temp=$(mktemp -t) || exit 1
+ local temp=$(mktemp -t backupninja.XXXXXX) || exit 1
trap "rm -f $temp" 0
local label
}
formDisplay() {
- local temp=$(mktemp -t) || exit 1
+ local temp=$(mktemp -t backupninja.XXXXXX) || exit 1
max_length=0
for ((i=0; i < ${#_form_labels[@]} ; i++)); do