[svn-commits] lmadsen: tag 1.6.2.9-rc3 r269351 - in /tags/1.6.2.9-rc3: ./ contrib/init.d/ m...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Jun 9 13:00:21 CDT 2010


Author: lmadsen
Date: Wed Jun  9 13:00:16 2010
New Revision: 269351

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=269351
Log:
Merge revision 269347. Update ChangeLog and .version files.

Modified:
    tags/1.6.2.9-rc3/.version
    tags/1.6.2.9-rc3/ChangeLog
    tags/1.6.2.9-rc3/contrib/init.d/rc.debian.asterisk
    tags/1.6.2.9-rc3/main/term.c

Modified: tags/1.6.2.9-rc3/.version
URL: http://svnview.digium.com/svn/asterisk/tags/1.6.2.9-rc3/.version?view=diff&rev=269351&r1=269350&r2=269351
==============================================================================
--- tags/1.6.2.9-rc3/.version (original)
+++ tags/1.6.2.9-rc3/.version Wed Jun  9 13:00:16 2010
@@ -1,1 +1,1 @@
-1.6.2.9-rc2
+1.6.2.9-rc3

Modified: tags/1.6.2.9-rc3/ChangeLog
URL: http://svnview.digium.com/svn/asterisk/tags/1.6.2.9-rc3/ChangeLog?view=diff&rev=269351&r1=269350&r2=269351
==============================================================================
--- tags/1.6.2.9-rc3/ChangeLog (original)
+++ tags/1.6.2.9-rc3/ChangeLog Wed Jun  9 13:00:16 2010
@@ -1,3 +1,21 @@
+2010-06-09  Leif Madsen <lmadsen at digium.com>
+
+	* Asterisk 1.6.2.9-rc3 Released.
+
+2010-06-09  Paul Belanger <paul.belanger at polybeacon.com>
+
+	* Fix Debian init script to not use -c.
+
+	  When using the init script as-is currently, it could cause issues on Debian
+	  such as high CPU usage. This fix has worked for several people so I'm
+	  implementing the change. We now handle color displays properly.
+
+	  (closes issue 0016784)
+	  Reported by: pabelanger
+	  Patches:
+	        20100530__issue16784__2.diff.txt uploaded by tilghman (license 14)
+	  Tested by: pabelanger, tilghman
+
 2010-06-07  Leif Madsen <lmadsen at digium.com>
 
 	* Asterisk 1.6.2.9-rc2 Released.

Modified: tags/1.6.2.9-rc3/contrib/init.d/rc.debian.asterisk
URL: http://svnview.digium.com/svn/asterisk/tags/1.6.2.9-rc3/contrib/init.d/rc.debian.asterisk?view=diff&rev=269351&r1=269350&r2=269351
==============================================================================
--- tags/1.6.2.9-rc3/contrib/init.d/rc.debian.asterisk (original)
+++ tags/1.6.2.9-rc3/contrib/init.d/rc.debian.asterisk Wed Jun  9 13:00:16 2010
@@ -53,7 +53,7 @@
         exit 0
 fi
 
-# Use the LSB standar functions for services management
+# Use the LSB standard functions for services management
 . /lib/lsb/init-functions
 
 case "$1" in
@@ -70,7 +70,6 @@
 	if [ ! -d $ASTVARRUNDIR ]; then
 		mkdir -p $ASTVARRUNDIR
 	fi
-
 	if [ $AST_USER ] ; then
 		ASTARGS="-U $AST_USER"
 		chown $AST_USER $ASTVARRUNDIR
@@ -79,13 +78,11 @@
 		ASTARGS="$ASTARGS -G $AST_GROUP"
 		chgrp $AST_GROUP $ASTVARRUNDIR
 	fi
+	if test "x$COLOR" = "xno" ; then
+		ASTARGS="$ASTARGS -n"
+	fi
 	# "start-stop-daemon --oknodo" returns 0 even if Asterisk was already running (as LSB expects):
-	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
+	start-stop-daemon --start --oknodo --exec $DAEMON -- $ASTARGS
 	log_end_msg $?
 	;;
   stop)

Modified: tags/1.6.2.9-rc3/main/term.c
URL: http://svnview.digium.com/svn/asterisk/tags/1.6.2.9-rc3/main/term.c?view=diff&rev=269351&r1=269350&r2=269351
==============================================================================
--- tags/1.6.2.9-rc3/main/term.c (original)
+++ tags/1.6.2.9-rc3/main/term.c Wed Jun  9 13:00:16 2010
@@ -1,7 +1,7 @@
 /*
  * Asterisk -- An open source telephony toolkit.
  *
- * Copyright (C) 1999 - 2005, Digium, Inc.
+ * Copyright (C) 1999 - 2010, Digium, Inc.
  *
  * Mark Spencer <markster at digium.com>
  *
@@ -18,9 +18,9 @@
 
 /*! \file
  *
- * \brief Terminal Routines 
- *
- * \author Mark Spencer <markster at digium.com> 
+ * \brief Terminal Routines
+ *
+ * \author Mark Spencer <markster at digium.com>
  */
 
 #include "asterisk.h"
@@ -87,12 +87,21 @@
 	char buffer[512] = "";
 	int termfd = -1, parseokay = 0, i;
 
-	if (!term)
+	if (ast_opt_no_color) {
 		return 0;
-	if (!ast_opt_console || ast_opt_no_color || !ast_opt_no_fork)
+	}
+
+	if (!ast_opt_console) {
+		/* If any remote console is not compatible, we'll strip the color codes at that point */
+		vt100compat = 1;
+		goto end;
+	}
+
+	if (!term) {
 		return 0;
-
-	for (i=0 ;; i++) {
+	}
+
+	for (i = 0;; i++) {
 		if (termpath[i] == NULL) {
 			break;
 		}
@@ -146,6 +155,7 @@
 		}
 	}
 
+end:
 	if (vt100compat) {
 		/* Make commands show up in nice colors */
 		if (ast_opt_light_background) {




More information about the svn-commits mailing list