summaryrefslogtreecommitdiff
path: root/pcr/seeks/seeksdaemon
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2019-02-09 15:10:53 +0100
committerAndreas Grapentin <andreas@grapentin.org>2019-02-09 15:10:53 +0100
commit3ef3cf96cb62dd57bf28c469cfa2cca15b128cb7 (patch)
tree9d5acd00a8a3b0de1548ee147322a2b23e429f5c /pcr/seeks/seeksdaemon
parent64b750864a88f799dd01a772a7a3f87dacf2415e (diff)
downloadabslibre-3ef3cf96cb62dd57bf28c469cfa2cca15b128cb7.tar.gz
abslibre-3ef3cf96cb62dd57bf28c469cfa2cca15b128cb7.tar.bz2
abslibre-3ef3cf96cb62dd57bf28c469cfa2cca15b128cb7.zip
pcr/seeks: unmaintained, unbuilt. removed
Diffstat (limited to 'pcr/seeks/seeksdaemon')
-rw-r--r--pcr/seeks/seeksdaemon41
1 files changed, 0 insertions, 41 deletions
diff --git a/pcr/seeks/seeksdaemon b/pcr/seeks/seeksdaemon
deleted file mode 100644
index 551197d28..000000000
--- a/pcr/seeks/seeksdaemon
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-. /etc/conf.d/seeks
-
-PID=`pidof -o %PPID /usr/bin/seeks`
-
-case "$1" in
- start)
- stat_busy "Starting seeks daemon"
- [ -z "$PID" ] && /usr/bin/seeks $SEEKS_ARGS
- if [ $? -gt 0 ]; then
- stat_fail
- else
- add_daemon seeks
- stat_done
- fi
- ;;
-
- stop)
- stat_busy "Stopping seeks daemon"
- [ ! -z "$PID" ] && kill $PID &> /dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon seeks
- stat_done
- fi
- ;;
- restart)
- $0 stop
- while [ ! -z "$PID" -a -d "/proc/$PID" ]; do sleep 1; done
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-
-esac
-exit 0
-