summaryrefslogtreecommitdiff
path: root/social/tokyotyrant/tokyotyrant.rc
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2014-08-27 05:07:26 -0300
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2014-08-27 05:07:26 -0300
commit0ff008e3c9dcc5ef088f481dfff3dcd121575598 (patch)
treed6f6cf5d6939e1f030a48d3711d3606570afd08f /social/tokyotyrant/tokyotyrant.rc
parented9d1c12bbfcf9cb8b3d53e886edb679df372640 (diff)
downloadabslibre-0ff008e3c9dcc5ef088f481dfff3dcd121575598.tar.gz
abslibre-0ff008e3c9dcc5ef088f481dfff3dcd121575598.tar.bz2
abslibre-0ff008e3c9dcc5ef088f481dfff3dcd121575598.zip
move some packages from [social] to [pcr] and remove unused [social]
Diffstat (limited to 'social/tokyotyrant/tokyotyrant.rc')
-rw-r--r--social/tokyotyrant/tokyotyrant.rc41
1 files changed, 0 insertions, 41 deletions
diff --git a/social/tokyotyrant/tokyotyrant.rc b/social/tokyotyrant/tokyotyrant.rc
deleted file mode 100644
index eaecb0af0..000000000
--- a/social/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