diff options
Diffstat (limited to 'src/backupninja.in')
-rwxr-xr-x | src/backupninja.in | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/src/backupninja.in b/src/backupninja.in index 8f7bd03..2663457 100755 --- a/src/backupninja.in +++ b/src/backupninja.in @@ -131,22 +131,6 @@ function setsection() { # -# create a temporary file in a secure way. -# -function maketemp() { - if [ -x /bin/mktemp ] - then - local tempfile=`mktemp /tmp/$1.XXXXXXXX` - else - DATE=`date` - sectmp=`echo $DATE | /usr/bin/md5sum | cut -d- -f1` - local tempfile=/tmp/$1.$sectmp - fi - echo $tempfile -} - - -# # sets a global var with name equal to $1 # to the value of the configuration parameter $1 # $2 is the default. @@ -488,6 +472,9 @@ if [ ! -d "$configdirectory" ]; then fatal "Configuration directory '$configdirectory' not found." fi +# include shared functions +. $libdir/tools + [ -f "$logfile" ] || touch $logfile if [ "$UID" != "0" ]; then |