blob: 8f1e98698ee87b8eb8cf1784dac75a9860dd8839 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/sbin/runscript
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/files/quasselcore.init,v 1.1 2008/08/26 12:01:44 jokey Exp $
depend() {
need net
}
start() {
ebegin "Starting Quassel Core"
start-stop-daemon --start --user $QUASSEL_USER --background --make-pidfile \
--pidfile /var/run/quassel.pid --exec /usr/bin/quasselcore -- ${QUASSEL_OPTS}
eend $?
}
stop() {
ebegin "Stopping Quassel Core"
start-stop-daemon --stop --user $QUASSEL_USER --pidfile /var/run/quassel.pid \
--exec /usr/bin/quasselcore
eend $?
}
|