From: nico Date: Fri, 3 Jun 2005 07:21:53 +0000 (+0000) Subject: Standardize initscript X-Git-Url: http://git.rohieb.name/openwrt.git/commitdiff_plain/d5422dbf9528f1b596da011899265412d56a42ec?ds=sidebyside Standardize initscript git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1140 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/openwrt/package/asterisk/files/CONTROL/conffiles b/openwrt/package/asterisk/files/CONTROL/conffiles deleted file mode 100644 index 2f2314ed8..000000000 --- a/openwrt/package/asterisk/files/CONTROL/conffiles +++ /dev/null @@ -1,22 +0,0 @@ -/etc/asterisk/agents.conf -/etc/asterisk/alarmreceiver.conf -/etc/asterisk/asterisk.conf -/etc/asterisk/cdr_manager.conf -/etc/asterisk/enum.conf -/etc/asterisk/extconfig.conf -/etc/asterisk/extensions.conf -/etc/asterisk/features.conf -/etc/asterisk/iax.conf -/etc/asterisk/iaxprov.conf -/etc/asterisk/indications.conf -/etc/asterisk/logger.conf -/etc/asterisk/manager.conf -/etc/asterisk/mgcp.conf -/etc/asterisk/modules.conf -/etc/asterisk/osp.conf -/etc/asterisk/privacy.conf -/etc/asterisk/queues.conf -/etc/asterisk/rtp.conf -/etc/asterisk/sip.conf -/etc/asterisk/skinny.conf -/etc/default/asterisk diff --git a/openwrt/package/asterisk/files/asterisk.default b/openwrt/package/asterisk/files/asterisk.default new file mode 100644 index 000000000..bbcb3cc86 --- /dev/null +++ b/openwrt/package/asterisk/files/asterisk.default @@ -0,0 +1,4 @@ +## startup options for /etc/init.d/asterisk + +ENABLE_ASTERISK="no" +OPTIONS="" diff --git a/openwrt/package/asterisk/files/asterisk.init b/openwrt/package/asterisk/files/asterisk.init new file mode 100644 index 000000000..698c3dfa8 --- /dev/null +++ b/openwrt/package/asterisk/files/asterisk.init @@ -0,0 +1,23 @@ +#!/bin/sh + +DEFAULT=/etc/default/asterisk +OPTIONS="" +[ -f $DEFAULT ] && . $DEFAULT +[ "$ENABLE_ASTERISK" = "yes" ] || exit 0 + +case $1 in + start) + [ -d /var/run ] || mkdir -p /var/run + [ -d /var/log/asterisk ] || mkdir -p /var/log/asterisk + [ -d /var/spool/asterisk ] || mkdir -p /var/spool/asterisk + /usr/sbin/asterisk $OPTIONS + ;; + stop) + [ -f /var/run/asterisk.pid ] && kill $(cat /var/run/asterisk.pid) >/dev/null 2>&1 + ;; + *) + echo "usage: $0 (start|stop)" + exit 1 +esac + +exit $? diff --git a/openwrt/package/asterisk/files/etc/default/asterisk b/openwrt/package/asterisk/files/etc/default/asterisk deleted file mode 100644 index bbcb3cc86..000000000 --- a/openwrt/package/asterisk/files/etc/default/asterisk +++ /dev/null @@ -1,4 +0,0 @@ -## startup options for /etc/init.d/asterisk - -ENABLE_ASTERISK="no" -OPTIONS="" diff --git a/openwrt/package/asterisk/files/etc/init.d/S60asterisk b/openwrt/package/asterisk/files/etc/init.d/S60asterisk deleted file mode 100755 index 698c3dfa8..000000000 --- a/openwrt/package/asterisk/files/etc/init.d/S60asterisk +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -DEFAULT=/etc/default/asterisk -OPTIONS="" -[ -f $DEFAULT ] && . $DEFAULT -[ "$ENABLE_ASTERISK" = "yes" ] || exit 0 - -case $1 in - start) - [ -d /var/run ] || mkdir -p /var/run - [ -d /var/log/asterisk ] || mkdir -p /var/log/asterisk - [ -d /var/spool/asterisk ] || mkdir -p /var/spool/asterisk - /usr/sbin/asterisk $OPTIONS - ;; - stop) - [ -f /var/run/asterisk.pid ] && kill $(cat /var/run/asterisk.pid) >/dev/null 2>&1 - ;; - *) - echo "usage: $0 (start|stop)" - exit 1 -esac - -exit $?