mirror of https://github.com/sipwise/asterisk.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
320 B
19 lines
320 B
#!/sbin/runscript
|
|
# $Id: rc.gentoo.asterisk 67061 2007-06-04 17:11:43Z tilghman $
|
|
|
|
depend() {
|
|
need net logger
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting Asterisk"
|
|
/usr/sbin/asterisk
|
|
eend $? "Failed to start Asterisk"
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping Asterisk"
|
|
kill $(cat /var/run/asterisk.pid)
|
|
eend $? "Failed to stop Asterisk"
|
|
}
|