summaryrefslogtreecommitdiff
path: root/pcr/tokyotyrant/tokyotyrant.rc
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2019-02-09 15:04:15 +0100
committerAndreas Grapentin <andreas@grapentin.org>2019-02-09 15:04:15 +0100
commit428f311cc01927ff99d0e4534b003a718bf8dc89 (patch)
tree03a2ed4b4ee3e7bc1073668c11676df95c0ee42c /pcr/tokyotyrant/tokyotyrant.rc
parentec6e6df7927da6153101482e3197d539bead673c (diff)
downloadabslibre-428f311cc01927ff99d0e4534b003a718bf8dc89.tar.gz
abslibre-428f311cc01927ff99d0e4534b003a718bf8dc89.tar.bz2
abslibre-428f311cc01927ff99d0e4534b003a718bf8dc89.zip
pcr/tokyotyrant: unmaintained, unbuilt. removed
Diffstat (limited to 'pcr/tokyotyrant/tokyotyrant.rc')
-rw-r--r--pcr/tokyotyrant/tokyotyrant.rc41
1 files changed, 0 insertions, 41 deletions
diff --git a/pcr/tokyotyrant/tokyotyrant.rc b/pcr/tokyotyrant/tokyotyrant.rc
deleted file mode 100644
index eaecb0af0..000000000
--- a/pcr/tokyotyrant/tokyotyrant.rc
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/bash
-
-# source config
-[ -f /etc/conf.d/ttserver ] && . /etc/conf.d/ttserver
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-case "$1" in
- start)
- stat_busy "Starting TokyoTyrant Server"
- /usr/bin/ttserver ${TYRANT_EXTRA_OPTS} -dmn -pid ${TYRANT_PID_FILE} -log ${TYRANT_LOG_FILE} -port ${TYRANT_PORT} ${TYRANT_DB}
- if [ $? -gt 0 ]; then
- stat_fail
- else
- add_daemon ttserver
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping TokyoTyrant Server"
- if [ -f $TYRANT_PID_FILE ]; then
- pid=`cat "$TYRANT_PID_FILE"`
- kill -TERM "$pid"
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon ttserver
- stat_done
- fi
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0