aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2009-05-26 13:08:50 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2009-05-26 13:08:50 +0000
commit336d24d9be3e12460a29cdddc93e3ffb14a64d89 (patch)
tree961d7700a57deeb4c8b75eedbed506dc41719d68 /contrib
parent922a9ea284f5993f1fe378462c4589d34123a51e (diff)
Merged revisions 196658 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r196658 | file | 2009-05-26 10:06:50 -0300 (Tue, 26 May 2009) | 14 lines Merged revisions 196657 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r196657 | file | 2009-05-26 10:06:09 -0300 (Tue, 26 May 2009) | 7 lines Remove some bash specific stuff from safe_asterisk. (closes issue #10812) Reported by: paravoid Patches: safe_asterisk_bashism.diff uploaded by tzafrir (license 46) ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@196661 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'contrib')
-rw-r--r--contrib/scripts/safe_asterisk8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/scripts/safe_asterisk b/contrib/scripts/safe_asterisk
index 367f6a6a9..dd6887b54 100644
--- a/contrib/scripts/safe_asterisk
+++ b/contrib/scripts/safe_asterisk
@@ -62,7 +62,7 @@ then
PRIORITY=0
message "safe_asterisk was started by `id -n` (uid `id -u`)."
else
- if `echo $OSTYPE | grep linux 2>&1 > /dev/null `
+ if `uname -s | grep Linux 2>&1 > /dev/null `
then
# maximum number of open files is set to the system maximum divided by two if
# MAXFILES is not set.
@@ -75,7 +75,7 @@ else
fi
fi
SYSCTL_MAXFILES="fs.file-max"
- elif `echo $OSTYPE | grep darwin 2>&1 > /dev/null `
+ elif `uname -s | grep Darwin 2>&1 > /dev/null `
then
SYSCTL_MAXFILES="kern.maxfiles"
fi
@@ -143,7 +143,7 @@ trap '' PIPE
if [ -d /etc/asterisk/startup.d ]; then
for script in /etc/asterisk/startup.d/*.sh; do
if [ -x ${script} ]; then
- source ${script}
+ . ${script}
fi
done
fi
@@ -167,7 +167,7 @@ run_asterisk()
message "Asterisk shutdown normally."
exit 0
elif [ $EXITSTATUS -gt 128 ]; then
- let EXITSIGNAL=EXITSTATUS-128
+ EXITSIGNAL=EXITSTATUS-128
echo "Asterisk exited on signal $EXITSIGNAL."
if [ "$NOTIFY" != "" ]; then
echo "Asterisk on $MACHINE exited on signal $EXITSIGNAL. Might want to take a peek." | \