Skip to content
Snippets Groups Projects
Commit 55f00d88 authored by Tilghman Lesher's avatar Tilghman Lesher
Browse files

Merged revisions 37458 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r37458 | tilghman | 2006-07-12 13:29:01 -0500 (Wed, 12 Jul 2006) | 2 lines

Merge fixup for asterisk startup script to zaptel startup script

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37459 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 2355c3ac
Branches
Tags
No related merge requests found
...@@ -17,7 +17,15 @@ ...@@ -17,7 +17,15 @@
MODULES="usb-uhci zaptel wcfxo wcusb" MODULES="usb-uhci zaptel wcfxo wcusb"
###################################### ######################################
[ -f /etc/sysconfig/`basename $0` ] && . /etc/sysconfig/`basename $0` # Resolve back to the basename (i.e. zaptel, not S90zaptel)
if [ 0`readlink $0` = "0" ]; then
CONFIGFILE=/etc/sysconfig/`basename $0`
else
CONFIG0=`readlink $0`
CONFIGFILE=/etc/sysconfig/`basename $CONFIG0`
fi
[ -f $CONFIGFILE ] && . $CONFIGFILE
function probe() { function probe() {
gprintf " $1" gprintf " $1"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment