diff options
author | Antonio Ospite <ospite@studenti.unina.it> | 2007-06-22 07:11:50 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-06-22 07:11:50 +0000 |
commit | 005b94b2d0208080b63ccd708fd354cf5717b84c (patch) | |
tree | 10c19cf8f411fc4554908c1cfae9d4b8e309c8a9 /packages/asterisk/files | |
parent | 5d946375b12e7f15a42f47cdf922f170dce9c718 (diff) |
linux-ezx: remove old kernel, update 2.6.21 and add script to generate SRC_URI from the quilt series in svn
Diffstat (limited to 'packages/asterisk/files')
-rw-r--r-- | packages/asterisk/files/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/asterisk/files/init | 77 |
2 files changed, 77 insertions, 0 deletions
diff --git a/packages/asterisk/files/.mtn2git_empty b/packages/asterisk/files/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/asterisk/files/.mtn2git_empty diff --git a/packages/asterisk/files/init b/packages/asterisk/files/init new file mode 100644 index 0000000000..1ece638c22 --- /dev/null +++ b/packages/asterisk/files/init @@ -0,0 +1,77 @@ +#! /bin/sh +# +# This is an init script for openembedded +# Copy it to /etc/init.d/openpbx and type +# > update-rc.d asterisk14 defaults 60 +# +asterisk=/usr/sbin/asterisk +pidfile=/var/run/asterisk/asterisk.pid +asterisk_args="-npqT -U asterisk -G asterisk" + +test -x "$asterisk" || exit 0 + +case "$1" in + start) + echo -n "Starting Asterisk" + start-stop-daemon --start --quiet --exec $asterisk -- $asterisk_args + echo "." + ;; + stop) + echo -n "Stopping Asterisk" + $asterisk -rx "stop gracefully" + sleep 4 + if [ -f $pidfile ]; then + start-stop-daemon --stop --quiet --pidfile $pidfile + fi + echo "." + ;; + force-stop) + echo -n "Stopping Asterisk" + $asterisk -rx "stop now" + sleep 2 + if [ -f $pidfile ]; then + start-stop-daemon --stop --quiet --pidfile $pidfile + fi + echo "." + ;; + restart) + echo -n "Restarting Asterisk" + if [ -f $pidfile ]; then + $asterisk -rx "restart gracefully" + sleep 2 + else + start-stop-daemon --start --quiet --exec $asterisk -- $asterisk_args + fi + echo "." + ;; + force-restart) + echo -n "Forcibly Restarting Asterisk" + if [ -f $pidfile ]; then + $asterisk -rx "restart now" + sleep 2 + else + start-stop-daemon --start --quiet --exec $asterisk -- $asterisk_args + fi + echo "." + ;; + reload) + echo -n "Reloading Asterisk Configuration" + if [ -f $pidfile ]; then + $asterisk -rx "reload" + else + start-stop-daemon --start --quiet --exec $asterisk -- $asterisk_args + fi + echo "." + ;; + logger-reload) + if [ -f $pidfile ]; then + $asterisk -rx "logger reload" + fi + ;; + *) + echo "Usage: /etc/init.d/asterisk {start|stop|force-stop|restart|force-restart|reload|logger-reload}" + exit 1 +esac + +exit 0 + |