forked from memcached/memcached
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow memcached-init to start multiple instances
Patch by Gordon Franke. Whitespace fixes and comments added by Dormando. There are many better ways to do this, but it doesn't break the default and the "status" command never existed. Servers can be started and stopped individually, and people seem to like the idea.
- Loading branch information
Showing
2 changed files
with
64 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,82 @@ | ||
#! /bin/sh | ||
# | ||
# skeleton example file to build /etc/init.d/ scripts. | ||
# This file should be used to construct scripts for /etc/init.d. | ||
# | ||
# Written by Miquel van Smoorenburg <[email protected]>. | ||
# Modified for Debian | ||
# by Ian Murdock <[email protected]>. | ||
# | ||
# Version: @(#)skeleton 1.9 26-Feb-2001 [email protected] | ||
# | ||
#! /bin/bash | ||
### BEGIN INIT INFO | ||
# Provides: memcached | ||
# Required-Start: $syslog | ||
# Required-Stop: $syslog | ||
# Should-Start: $local_fs | ||
# Should-Stop: $local_fs | ||
# Default-Start: 2 3 4 5 | ||
# Default-Stop: 0 1 6 | ||
# Short-Description: Start memcached daemon at boot time | ||
# Description: Enable memcached server | ||
# Short-Description: memcached - Memory caching daemon | ||
# Description: memcached - Memory caching daemon | ||
### END INIT INFO | ||
|
||
# Usage: | ||
# cp /etc/memcached.conf /etc/memcached_server1.conf | ||
# cp /etc/memcached.conf /etc/memcached_server2.conf | ||
# start all instances: | ||
# /etc/init.d/memcached start | ||
# start one instance: | ||
# /etc/init.d/memcached start server1 | ||
# stop all instances: | ||
# /etc/init.d/memcached stop | ||
# stop one instance: | ||
# /etc/init.d/memcached stop server1 | ||
# There is no "status" command. | ||
|
||
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin | ||
DAEMON=/usr/bin/memcached | ||
DAEMONNAME=memcached | ||
DAEMONBOOTSTRAP=/usr/share/memcached/scripts/start-memcached | ||
NAME=memcached | ||
DESC=memcached | ||
PIDFILE=/var/run/$NAME.pid | ||
|
||
test -x $DAEMON || exit 0 | ||
test -x $DAEMONBOOTSTRAP || exit 0 | ||
|
||
set -e | ||
|
||
FILES=(/etc/memcached_*.conf) | ||
# check for alternative config schema | ||
if [ -r "${FILES[0]}" ]; then | ||
CONFIGS=() | ||
for FILE in "${FILES[@]}"; | ||
do | ||
# remove prefix | ||
NAME=${FILE#/etc/} | ||
# remove suffix | ||
NAME=${NAME%.conf} | ||
|
||
# check optional second param | ||
if [ $# -ne 2 ]; | ||
then | ||
# add to config array | ||
CONFIGS+=($NAME) | ||
elif [ "memcached_$2" == "$NAME" ]; | ||
then | ||
# use only one memcached | ||
CONFIGS=($NAME) | ||
break; | ||
fi; | ||
done; | ||
|
||
if [ ${#CONFIGS[@]} == 0 ]; | ||
then | ||
echo "Config not exist for: $2" >&2 | ||
exit 1 | ||
fi; | ||
else | ||
CONFIGS=(memcached) | ||
fi; | ||
|
||
CONFIG_NUM=${#CONFIGS[@]} | ||
for ((i=0; i < $CONFIG_NUM; i++)); do | ||
NAME=${CONFIGS[${i}]} | ||
PIDFILE="/var/run/${NAME}.pid" | ||
|
||
case "$1" in | ||
start) | ||
echo -n "Starting $DESC: " | ||
start-stop-daemon --start --quiet --exec $DAEMONBOOTSTRAP | ||
start-stop-daemon --start --quiet --exec "$DAEMONBOOTSTRAP" -- /etc/${NAME}.conf $PIDFILE | ||
echo "$NAME." | ||
;; | ||
stop) | ||
|
@@ -55,7 +96,7 @@ case "$1" in | |
start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE | ||
rm -f $PIDFILE | ||
sleep 1 | ||
start-stop-daemon --start --quiet --exec $DAEMONBOOTSTRAP | ||
start-stop-daemon --start --quiet --exec "$DAEMONBOOTSTRAP" -- /etc/${NAME}.conf $PIDFILE | ||
echo "$NAME." | ||
;; | ||
*) | ||
|
@@ -65,5 +106,6 @@ case "$1" in | |
exit 1 | ||
;; | ||
esac | ||
done; | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters