51 lines
1.4 KiB
Plaintext
51 lines
1.4 KiB
Plaintext
#!/sbin/runscript
|
|
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-db/mongodb/files/mongos.initd,v 1.2 2011/08/26 12:38:49 ultrabug Exp $
|
|
|
|
depend() {
|
|
need net
|
|
}
|
|
|
|
checkconfig() {
|
|
if [ -z "${MONGOS_CONFIGDB}" ]; then
|
|
eerror "MONGOS_CONFIGDB is not defined, check your configuration file !"
|
|
return 1
|
|
fi
|
|
return 0
|
|
}
|
|
|
|
start() {
|
|
checkconfig || return 1
|
|
|
|
mkdir -p ${MONGOS_RUN:-/var/run/mongodb}
|
|
chown ${MONGOS_USER:-mongodb}: ${MONGOS_RUN:-/var/run/mongodb}
|
|
|
|
# Listen to MONGOS_IP if configured
|
|
[ -z "${MONGOS_IP}" ] || MONGOS_OPTIONS="--bind_ip ${MONGOS_IP} ${MONGOS_OPTIONS}"
|
|
|
|
# Baselayout-1 user should use --chuid instead of --user
|
|
local USEROPT="--user"
|
|
if [ ! -f /etc/init.d/sysfs ]; then
|
|
USEROPT="--chuid"
|
|
fi
|
|
|
|
ebegin "Starting ${SVCNAME}"
|
|
start-stop-daemon --background --start --make-pidfile \
|
|
--pidfile ${MONGOS_RUN:-/var/run/mongodb}/${SVCNAME}.pid \
|
|
${USEROPT} ${MONGOS_USER:-mongodb} \
|
|
--exec ${MONGOS_EXEC:-/usr/bin/mongos} \
|
|
-- \
|
|
--port ${MONGOS_PORT:-27018} \
|
|
--unixSocketPrefix ${MONGOS_RUN:-/var/run/mongodb} \
|
|
--logappend --logpath /var/log/mongodb/${SVCNAME}.log \
|
|
--configdb ${MONGOS_CONFIGDB} \
|
|
${MONGOS_OPTIONS}
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping ${SVCNAME}"
|
|
start-stop-daemon --stop --pidfile ${MONGOS_RUN:-/var/run/mongodb}/${SVCNAME}.pid
|
|
eend $?
|
|
} |