summaryrefslogtreecommitdiffstats
path: root/network/memcached/rc.memcached
blob: 4cacb097d46846cd837a7e0f27a9eac56d0774ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/sh
#
# /etc/rc.d/rc.memcached - start/stop/restart memcached service.
# Contributed by Miguel De Anda <miguel@thedeanda.com>
#
# Please add this script to rc.local and rc.local_shutdown
# to automatically start and stop the memcached service.
#

PID="/var/run/memcached.pid"
USER="nobody"

memcached_start() {
	memcached -d -u $USER -P $PID
}

memcached_stop() {
	kill $(cat $PID)
}

memcached_restart() {
	memcached_stop
	sleep 2
	memcached_start
}

case "$1" in
	'start')
		memcached_start
	;;
	'stop')
		memcached_stop
	;;
	'restart')
		memcached_restart
	;;
	*)
	echo "USAGE: $0 start|stop|restart"
	exit 1
	;;
esac