summaryrefslogtreecommitdiff
path: root/pcr/opentracker/opentracker.rc.d
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2015-05-21 18:49:29 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2015-05-21 18:49:29 -0500
commit33975c6154aea6e2ce2ef55140ef04b4b6815651 (patch)
treed69af538fd2974c98aa8752977646feda9a36c38 /pcr/opentracker/opentracker.rc.d
parentde855f961f2b80778bc1a3fbcd8c898ee5bf792f (diff)
opentracker-git: add new package to [pcr]
Diffstat (limited to 'pcr/opentracker/opentracker.rc.d')
-rw-r--r--pcr/opentracker/opentracker.rc.d37
1 files changed, 0 insertions, 37 deletions
diff --git a/pcr/opentracker/opentracker.rc.d b/pcr/opentracker/opentracker.rc.d
deleted file mode 100644
index b1aa34c14..000000000
--- a/pcr/opentracker/opentracker.rc.d
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/bash
-
-# general config
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/bin/opentracker`
-
-case "$1" in
- start)
- stat_busy "Starting opentracker Daemon"
- [ -z "$PID" ] && su nobody -s /bin/sh -c "/usr/bin/opentracker -f /etc/opentracker/config&"
- if [ $? -gt 0 ]; then
- stat_fail
- else
- add_daemon opentracker
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping opentracker Daemon"
- [ ! -z "$PID" ] && kill $PID &>/dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon opentracker
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac