blob: 758c81241032176f0cc3e028fdae3589c3cfd41f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk/files/1.0.0/asterisk.rc6,v 1.1 2004/09/24 00:01:57 stkn Exp $
depend() {
need net logger
}
start() {
ebegin "Starting asterisk PBX"
start-stop-daemon --start --exec /usr/sbin/asterisk -- ${OPTIONS}
eend $?
}
stop() {
ebegin "Stopping asterisk PBX"
start-stop-daemon --stop --pidfile /var/run/asterisk.pid
eend $?
}
|