network/geomyidae: Fix rc script.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
992ce79a42
commit
d0b12203a1
|
@ -23,7 +23,7 @@
|
|||
|
||||
PRGNAM=geomyidae
|
||||
VERSION=${VERSION:-git20171114}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
|
|
|
@ -1,20 +1,21 @@
|
|||
#!/bin/sh
|
||||
|
||||
PID=$(pidof -o %PPID /usr/bin/geomyidae)
|
||||
# Array of all PIDS
|
||||
PID=($(pidof -o %PPID /usr/bin/geomyidae))
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
echo "Starting geomyidae"
|
||||
[ -z "$PID" ] && /usr/bin/geomyidae $GEOMYIDAE_ARGS 2>&1
|
||||
/usr/bin/geomyidae $GEOMYIDAE_ARGS 2>&1
|
||||
if [ $? -gt 0 ]; then
|
||||
echo "Startup failed"
|
||||
fi
|
||||
;;
|
||||
stop)
|
||||
echo "Stopping geomyidae"
|
||||
[ -n "$PID" ] && kill $PID &>/dev/null
|
||||
if [ $? -gt 0 ]; then
|
||||
echo "Stopping failed"
|
||||
echo "Stopping all geomyidae processes"
|
||||
[ -n "$PID" ] && kill ${PID[@]} &>/dev/null
|
||||
if [ $? -gt 0 ] && [ -n "$PID" ]; then
|
||||
echo "Stopping failed for at least one process"
|
||||
fi
|
||||
;;
|
||||
restart)
|
||||
|
|
Loading…
Reference in New Issue