r261@crapouille: intrigeri | 2005-12-28 20:59:01 +0100
[matthijs/upstream/backupninja.git] / src / ninjahelper.in
index 099a5808b9086ea426f3dcf35a65094d833c778d..e191f60ce9528274ab4e84632519e68e7a3330f9 100755 (executable)
@@ -1,4 +1,5 @@
-#!/bin/bash
+#!@BASH@
+# -*- mode: sh; sh-basic-offset: 8; indent-tabs-mode: nil; -*-
 
 ####################################################
 ## Functions
@@ -58,6 +59,9 @@ require_packages() {
 ## menu for the wizards
 ##
 donew() {
+  # (re-)initialize vservers support
+  init_vservers
+  # menu
   listBegin "new action menu" "select an action to create"
   listItem return "return to main menu"
   for data in $HELPERS; do
@@ -182,62 +186,48 @@ if [ ! -x "`which dialog`" ]; then
     done
 fi
 
+# bootstrap
 conffile="@CFGDIR@/backupninja.conf"
 if [ ! -r "$conffile" ]; then
        echo "Configuration file $conffile not found." 
        exit 1
 fi
-# find $scriptdir
-scriptdir=`grep scriptdirectory $conffile | awk '{print $3}'`
-if [ -z "$scriptdir" ]; then
-        if [ -d "@datadir@" ]; then
-          scriptdir="@datadir@"
-       else
-          echo "Could not find entry 'scriptdirectory' in $conffile" 
-          exit 1
-       fi
-else
-        if [ ! -d "$scriptdir" ]; then
-          echo "Script directory $scriptdir not found." 
-          exit 1
-       fi         
-fi
-# find $libdir
-libdir=`grep libdirectory $conffile | awk '{print $3}'`
-if [ -z "$libdir" ]; then
+
+# find $libdirectory
+libdirectory=`grep '^libdirectory' $conffile | awk '{print $3}'`
+if [ -z "$libdirectory" ]; then
         if [ -d "@libdir@" ]; then
-          libdir="@libdir@"
+          libdirectory="@libdir@"
        else
           echo "Could not find entry 'libdirectory' in $conffile." 
           exit 1
        fi
 else
-        if [ ! -d "$libdir" ]; then
-          echo "Lib directory $libdir not found." 
+        if [ ! -d "$libdirectory" ]; then
+          echo "Lib directory $libdirectory not found." 
           exit 1
        fi
 fi
 
-configdirectory=`grep configdirectory $conffile | awk '{print $3}'`
-if [ ! -n "$configdirectory" ]; then
-       echo "Cound not find entry 'configdirectory' in $conffile" 
-       exit 1
-fi
-if [ ! -d "$configdirectory" ]; then
-       echo "Configuration directory $configdirectory not found." 
-       exit 1
-fi
-
-. $libdir/easydialog
+# include shared functions
+. $libdirectory/easydialog
+. $libdirectory/tools
+. $libdirectory/vserver
 
+# am I running as root?
 if [ "$UID" != "0" ]; then
-       msgBox "warning" "ninjahelper must be run by root!"
+       msgBox "warning" "`basename $0` must be run by root!"
        exit 1
 fi
 
+# get global config options (second param is the default)
+setfile $conffile
+getconf configdirectory @CFGDIR@/backup.d
+getconf scriptdirectory @datadir@
+
 # load all the helpers
 HELPERS=""
-for file in `find $scriptdir -follow -name '*.helper'`; do
+for file in `find $scriptdirectory -follow -name '*.helper'`; do
    check_perms $file
    . $file
 done