diff options
author | Dave Woodfall <dave@tty1.uk> | 2018-11-27 10:02:01 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-12-01 07:27:58 +0700 |
commit | 941563a1cb724e62bfffac3b39a5e4c8081c3a60 (patch) | |
tree | 69b365b816c57c28a8c602caf9d6b8522f440183 /network/geomyidae/rc.geomyidae.new | |
parent | edd4fd09305198ea3c1844d45f097942b28dfa76 (diff) |
network/geomyidae: Update to v0.34
Diffstat (limited to 'network/geomyidae/rc.geomyidae.new')
-rw-r--r-- | network/geomyidae/rc.geomyidae.new | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/network/geomyidae/rc.geomyidae.new b/network/geomyidae/rc.geomyidae.new deleted file mode 100644 index df491581d56e3..0000000000000 --- a/network/geomyidae/rc.geomyidae.new +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh - -# Array of all PIDS -PID=($(pidof -o %PPID /usr/bin/geomyidae)) - -case "$1" in - start) - echo "Starting geomyidae" - /usr/bin/geomyidae $GEOMYIDAE_ARGS 2>&1 - if [ $? -gt 0 ]; then - echo "Startup failed" - fi - ;; - stop) - 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) - $0 stop - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac -exit 0 - |