]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/scripts/bacula-ctl-sd.in
Change Byline
[bacula/bacula] / bacula / scripts / bacula-ctl-sd.in
index 9586bfc84c0524f35032bc3072b5b9de2158b34e..99ee11530b5738b5cfebcb7c72c36936f739f7a0 100644 (file)
@@ -6,7 +6,7 @@
 #   This is pretty much watered down version of the RedHat script
 #   that works on Solaris as well as Linux, but it won't work everywhere.
 #
-# description: It comes by night and sucks the vital essence from your computers.
+# description: The Leading Open Source Backup Solution.
 #
 
 PSCMD="@PSCMD@"
@@ -31,7 +31,7 @@ SD_PORT=@sd_port@
 
 SD_USER=@sd_user@
 SD_GROUP=@sd_group@
-
+Bacula="@BACULA@"
 PIDOF=@PIDOF@  
 
 # A function to stop a program.
@@ -128,7 +128,8 @@ pidofproc() {
    fi
 
    # Finally try to extract it from ps
-   ${PSCMD} | grep $1 | ${AWK} '{ print $1 }' | tr '\n' ' '
+   pid=`${PSCMD} | grep $1 | ${AWK} '{ print $1 }' | tr '\n' ' '`
+   echo $pid
    return 0
 }
 
@@ -197,7 +198,7 @@ fi
 case "$1" in
    start)
       [ -x ${BACSDBIN}/bacula-sd ] && {
-        echo "Starting the Bacula Storage daemon"
+        echo "Starting the $Bacula Storage daemon"
         OPTIONS=''
         if [ "${SD_USER}" != '' ]; then
            OPTIONS="${OPTIONS} -u ${SD_USER}"
@@ -207,14 +208,14 @@ case "$1" in
            OPTIONS="${OPTIONS} -g ${SD_GROUP}"
         fi
 
-        ${BACSDBIN}/bacula-sd $2 ${OPTIONS} -v -c ${BACSDCFG}/bacula-sd.conf
+        ${BACSDBIN}/bacula-sd $2 $3 ${OPTIONS} -v -c ${BACSDCFG}/bacula-sd.conf
       }
       ;;
 
 
    stop)
       [ -x ${BACSDBIN}/bacula-sd ] && {
-        echo "Stopping the Bacula Storage daemon"
+        echo "Stopping the $Bacula Storage daemon"
         killproc ${BACSDBIN}/bacula-sd ${SD_PORT}
       }
       ;;