[svn-commits] russell: trunk r164807 - in /trunk: ./ main/manager.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Dec 16 14:41:52 CST 2008


Author: russell
Date: Tue Dec 16 14:41:51 2008
New Revision: 164807

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

........
r164806 | russell | 2008-12-16 14:35:25 -0600 (Tue, 16 Dec 2008) | 9 lines

Add "restart gracefully" to the AMI blacklist of CLI commands.  

"module unload" was already identified as a command that can not be used 
from the AMI.  "restart gracefully" effectively unloads all modules, and will 
run in to the same problems.

(closes issue #13894)
Reported by: kernelsensei

........

Modified:
    trunk/   (props changed)
    trunk/main/manager.c

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

Modified: trunk/main/manager.c
URL: http://svn.digium.com/view/asterisk/trunk/main/manager.c?view=diff&rev=164807&r1=164806&r2=164807
==============================================================================
--- trunk/main/manager.c (original)
+++ trunk/main/manager.c Tue Dec 16 14:41:51 2008
@@ -146,6 +146,7 @@
 } command_blacklist[] = {
 	{{ "module", "load", NULL }},
 	{{ "module", "unload", NULL }},
+	{{ "restart", "gracefully", NULL }},
 };
 
 struct mansession {




More information about the svn-commits mailing list