From: Kevin P. Fleming Date: Wed, 19 Apr 2006 21:11:31 +0000 (+0000) Subject: Merged revisions 21638 via svnmerge from X-Git-Tag: 1.4.0-beta1~1858 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2af019970f58bf5a09cd048c4b12cb2a71724270;p=thirdparty%2Fasterisk.git Merged revisions 21638 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r21638 | kpfleming | 2006-04-19 16:10:41 -0500 (Wed, 19 Apr 2006) | 2 lines support system-specific scripts in safe_asterisk, before starting Asterisk proper ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@21639 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/contrib/scripts/safe_asterisk b/contrib/scripts/safe_asterisk index 994d2b9fe4..3849e836e0 100644 --- a/contrib/scripts/safe_asterisk +++ b/contrib/scripts/safe_asterisk @@ -94,9 +94,17 @@ if [ ! -w ${DUMPDROP} ]; then exit 1 fi -#launch_asterisk() -#{ -#} +# +# Run scripts to set any environment variables or do any other system-specific setup needed +# + +if [ -d /etc/asterisk/startup.d ]; then + for script in /etc/asterisk/startup.d/*.sh; do + if [ -x ${script} ]; then + source ${script} + fi + done +fi run_asterisk() { diff --git a/contrib/scripts/safe_asterisk.8 b/contrib/scripts/safe_asterisk.8 index 277fa5f8dc..ebd95142ab 100644 --- a/contrib/scripts/safe_asterisk.8 +++ b/contrib/scripts/safe_asterisk.8 @@ -40,6 +40,13 @@ safe_asterisk runs in that directory, rather than in / as usual. If core files were generated there, they may be .RE +.B /etc/asterisk/startup.d +.RS +Files in this directory will be 'source'd by the safe_asterisk script before +it starts Asterisk proper, allowing them to set additional environment variables +or run any other steps that are needed for your system. +.RE + .SH BUGS While showing the output on a console is useful, using screen(1) as the terminal may be better.