summaryrefslogtreecommitdiff
blob: 1df48d642ac2e64f6cfc6efd3f647c96af9681b1 (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
43
44
45
46
47
48
49
50
#!/sbin/openrc-run
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

depend() {
	use 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

	checkpath -d -m 0750 -o "${MONGOS_USER}":mongodb "${MONGOS_RUN}"

	# 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 $?
}