summaryrefslogtreecommitdiffstats
path: root/network/geomyidae
diff options
context:
space:
mode:
Diffstat (limited to 'network/geomyidae')
-rw-r--r--network/geomyidae/geomyidae.SlackBuild2
-rw-r--r--network/geomyidae/rc.geomyidae.new13
2 files changed, 8 insertions, 7 deletions
diff --git a/network/geomyidae/geomyidae.SlackBuild b/network/geomyidae/geomyidae.SlackBuild
index d33dd363c5..eef9db6bd2 100644
--- a/network/geomyidae/geomyidae.SlackBuild
+++ b/network/geomyidae/geomyidae.SlackBuild
@@ -23,7 +23,7 @@
PRGNAM=geomyidae
VERSION=${VERSION:-git20171114}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
diff --git a/network/geomyidae/rc.geomyidae.new b/network/geomyidae/rc.geomyidae.new
index 34c2c75317..38c02f8be1 100644
--- a/network/geomyidae/rc.geomyidae.new
+++ b/network/geomyidae/rc.geomyidae.new
@@ -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)