[svn-commits] tilghman: trunk r236434 - in /trunk: ./ contrib/init.d/rc.debian.asterisk

SVN commits to the Digium repositories svn-commits at lists.digium.com
Sun Dec 27 12:20:55 CST 2009


Author: tilghman
Date: Sun Dec 27 12:20:53 2009
New Revision: 236434

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=236434
Log:
Merged revisions 236433 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r236433 | tilghman | 2009-12-27 12:19:38 -0600 (Sun, 27 Dec 2009) | 2 lines
  
  Turn on colors in the daemon, since there's many requests for it on Ubuntu.
........

Modified:
    trunk/   (props changed)
    trunk/contrib/init.d/rc.debian.asterisk

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/contrib/init.d/rc.debian.asterisk
URL: http://svnview.digium.com/svn/asterisk/trunk/contrib/init.d/rc.debian.asterisk?view=diff&rev=236434&r1=236433&r2=236434
==============================================================================
--- trunk/contrib/init.d/rc.debian.asterisk (original)
+++ trunk/contrib/init.d/rc.debian.asterisk Sun Dec 27 12:20:53 2009
@@ -49,6 +49,10 @@
 #AST_USER="asterisk"
 #AST_GROUP="asterisk"
 
+# If you DON'T want Asterisk to start up with terminal colors, comment
+# this out.
+COLOR=yes
+
 set -e
 
 if ! [ -x $DAEMON ] ; then
@@ -88,7 +92,12 @@
 		chgrp $AST_GROUP $ASTVARRUNDIR
 	fi
 	# "start-stop-daemon --oknodo" returns 0 even if Asterisk was already running (as LSB expects):
-	start-stop-daemon --start --oknodo --exec $DAEMON -- $ASTARGS
+	if test "x$COLOR" = "xyes" ; then
+		export TERM=linux
+		start-stop-daemon --start --oknodo --background --exec $DAEMON -- $ASTARGS -c
+	else
+		start-stop-daemon --start --oknodo --exec $DAEMON -- $ASTARGS
+	fi
 	log_end_msg $?
 	;;
   stop)




More information about the svn-commits mailing list