]> WPIA git - gigi.git/blobdiff - debian/cacert-gigi-testing.cacert-gigi.init
fixup! UPD: Fix the debian package
[gigi.git] / debian / cacert-gigi-testing.cacert-gigi.init
index f0730123ed9fe23caed3916302e128593ada656f..278f69075934c72149bb6fda99eada5545178ef4 100644 (file)
@@ -26,10 +26,15 @@ SCRIPTNAME=/etc/init.d/$NAME
 DIR=/var/lib/cacert-gigi
 
 # Exit if the package is not installed
-[ -x "$DAEMON" ] || exit 0
+[ -r "/usr/share/java/gigi.jar" ] || exit 0
 
 # Read configuration variable file if it is present
 [ -r /etc/default/$NAME ] && . /etc/default/$NAME
+if [ "$START_DAEMON" = "0" ]; then
+    echo "Not starting $NAME (as configured in /etc/default/$NAME)";
+    exit 0;
+fi
+
 
 # Load the VERBOSE setting and other rcS variables
 . /lib/init/vars.sh
@@ -44,15 +49,15 @@ DIR=/var/lib/cacert-gigi
 #
 do_start()
 {
-       if [ ! -f /etc/cacert-gigi/conf.tar ]; then
+       if [ ! -f /etc/cacert/gigi/conf.tar ]; then
                echo Missing gigi-configfile
-                exit 2
-        fi
+               exit 2
+       fi
        # Return
        #   0 if daemon has been started
        #   1 if daemon was already running
        #   2 if daemon could not be started
-        start-stop-daemon -b --start --quiet --pidfile $PIDFILE -d $DIR --exec $DAEMON --test > /dev/null \
+       start-stop-daemon --start --quiet --pidfile $PIDFILE -d $DIR --exec $DAEMON --test > /dev/null \
                || return 1
        start-stop-daemon -b --start --quiet --pidfile $PIDFILE -d $DIR --exec /usr/bin/gigi -- start-daemon \
                || return 2