blob: f08bcd46f27c06f6c016b81f7688815e7dfbd937 (
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
51
52
53
54
|
#!/sbin/runscript
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/rbot/files/rbot.init2,v 1.1 2010/07/28 07:58:08 a3li Exp $
depend() {
need net
use dns
}
start() {
if ! [ -d "${RBOTDIR}" ]; then
eerror "The path you specified (${RBOTDIR}) is not a directory."
eerror "Please set RBOTDIR variable in /etc/conf.d/${SVCNAME}"
eerror "to a proper value for an rbot base directory."
return 1
fi
if ! [ -f "${RBOTDIR}/conf.yaml" ]; then
eerror "You didn't configure rbot yet. Please configure rbot by running"
eerror " rbot ${RBOTDIR}"
eerror "at least once."
return 1
fi
if ! [ -x "${RBOTRUBY}" ]; then
eerror "The configured Ruby interpreter for rbot is not an executable."
eerror "Use \`eselect ruby' to set a default interpreter or adapt the"
eerror "RBOTRUBY variable in /etc/conf.d/${SVCNAME}."
return 1
fi
export USER="${RBOTUSER%%:*}"
export HOME="/dev/null"
ebegin "Starting rbot"
start-stop-daemon \
--start \
--exec "${RBOTRUBY}" --name "$(basename ${RBOTRUBY})" \
--pidfile "${RBOTDIR}/rbot.pid" \
--chuid "${RBOTUSER}" \
-- /usr/bin/rbot --background "${RBOTDIR}"
eend $?
}
stop() {
ebegin "Stopping rbot"
start-stop-daemon --stop \
--exec "${RBOTRUBY}" \
--pidfile "${RBOTDIR}/rbot.pid" \
--user "${RBOTUSER%%:*}"
eend $?
}
# vim:set sts=8 sw=8 ts=8 noexpandtab:
|