forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
g15composer-3.1.initd
48 lines (42 loc) · 1.22 KB
/
g15composer-3.1.initd
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
#!/sbin/openrc-run
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
PIDFILE=/var/run/${SVCNAME}.pid
depend() {
need g15daemon
}
start() {
ebegin "Starting ${SVCNAME}"
if [ -z "${FIFO_USER}" -o -z "${FIFO_GROUP}" ] ; then
eerror "Please set the FIFO_USER and FIFO_GROUP variables in /etc/conf.d/${SVCNAME}"
eend 1
return 1
fi
if [ -e "${CONTROL_FIFO}" -a ! -p "${CONTROL_FIFO}" ] ; then
eerror "${CONTROL_FIFO} exists and is not a FIFO. Please remove."
eend 1
return 1
fi
if [ ! -p "${CONTROL_FIFO}" ] ; then
einfo "Creating FIFO at ${CONTROL_FIFO}"
mkfifo -m660 "${CONTROL_FIFO}"
else
einfo "Reusing FIFO at ${CONTROL_FIFO}"
fi
chown ${FIFO_USER} "${CONTROL_FIFO}"
chgrp ${FIFO_GROUP} "${CONTROL_FIFO}"
start-stop-daemon --start --background --pidfile ${PIDFILE} --make-pidfile --exec \
/usr/bin/g15composer -- -b -u "${FIFO_USER}" -g "${FIFO_GROUP}" "${CONTROL_FIFO}"
eend $?
}
stop() {
ebegin "Stoping ${SVCNAME}"
start-stop-daemon --stop --pidfile ${PIDFILE} --name g15composer
if [ -p "${CONTROL_FIFO}" ] ; then
einfo "Removing FIFO at ${CONTROL_FIFO}"
rm -f "${CONTROL_FIFO}"
else
ewarn "FIFO at ${CONTROL_FIFO} was lost"
fi
eend $?
}