aboutsummaryrefslogtreecommitdiff
path: root/net/asterisk/files/asterisk.in
diff options
context:
space:
mode:
Diffstat (limited to 'net/asterisk/files/asterisk.in')
-rw-r--r--net/asterisk/files/asterisk.in43
1 files changed, 43 insertions, 0 deletions
diff --git a/net/asterisk/files/asterisk.in b/net/asterisk/files/asterisk.in
new file mode 100644
index 000000000000..a612850c5603
--- /dev/null
+++ b/net/asterisk/files/asterisk.in
@@ -0,0 +1,43 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+# PROVIDE: asterisk
+# REQUIRE: LOGIN
+# KEYWORD: shutdown
+#
+# Add the following lines to /etc/rc.conf to enable asterisk:
+#
+# asterisk_enable="YES"
+#
+
+. /etc/rc.subr
+
+name=asterisk
+rcvar=asterisk_enable
+
+extra_commands="reload"
+
+stop_cmd="asterisk_stop"
+reload_cmd="asterisk_reload"
+
+command="%%PREFIX%%/sbin/asterisk"
+command_args="-n -U %%ASTERISK_USER%%"
+pidfile=${asterisk_pidfile:-"/var/run/asterisk/asterisk.pid"}
+
+asterisk_stop() {
+ echo 'Stopping asterisk'
+ $command -nqrx 'core stop now'
+}
+
+asterisk_reload() {
+ echo 'Reloading asterisk'
+ $command -nqrx 'reload'
+}
+
+load_rc_config $name
+
+asterisk_enable=${asterisk_enable:-"NO"}
+
+run_rc_command "$1"