[svn-commits] russell: branch 1.8 r294535 - in /branches/1.8: ./ res/ais/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Nov 10 08:15:04 CST 2010


Author: russell
Date: Wed Nov 10 08:14:51 2010
New Revision: 294535

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=294535
Log:
Tweak a couple of CLI commands back to their original form.

The "module" in this case is two parts, so there are two words before
the verb of the CLI command.

Modified:
    branches/1.8/UPGRADE.txt
    branches/1.8/res/ais/clm.c
    branches/1.8/res/ais/evt.c

Modified: branches/1.8/UPGRADE.txt
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/UPGRADE.txt?view=diff&rev=294535&r1=294534&r2=294535
==============================================================================
--- branches/1.8/UPGRADE.txt (original)
+++ branches/1.8/UPGRADE.txt Wed Nov 10 08:14:51 2010
@@ -19,6 +19,10 @@
 ===========================================================
 
 From 1.6.2 to 1.8:
+
+* A couple of CLI commands in res_ais were changed back to their original form:
+    "ais show clm members" --> "ais clm show members"
+    "ais show evt event channels" --> "ais evt show event channels"
 
 * The default value for 'autofill' and 'shared_lastcall' in queues.conf has
   been changed to 'yes'.

Modified: branches/1.8/res/ais/clm.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/res/ais/clm.c?view=diff&rev=294535&r1=294534&r2=294535
==============================================================================
--- branches/1.8/res/ais/clm.c (original)
+++ branches/1.8/res/ais/clm.c Wed Nov 10 08:14:51 2010
@@ -79,9 +79,9 @@
 
 	switch (cmd) {
 	case CLI_INIT:
-		e->command = "ais show clm members";
+		e->command = "ais clm show members";
 		e->usage =
-			"Usage: ais show clm members\n"
+			"Usage: ais clm show members\n"
 			"       List members of the cluster using the CLM (Cluster Membership) service.\n";
 		return NULL;
 

Modified: branches/1.8/res/ais/evt.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/res/ais/evt.c?view=diff&rev=294535&r1=294534&r2=294535
==============================================================================
--- branches/1.8/res/ais/evt.c (original)
+++ branches/1.8/res/ais/evt.c Wed Nov 10 08:14:51 2010
@@ -246,9 +246,9 @@
 
 	switch (cmd) {
 	case CLI_INIT:
-		e->command = "ais show evt event channels";
+		e->command = "ais evt show event channels";
 		e->usage =
-			"Usage: ais show evt event channels\n"
+			"Usage: ais evt show event channels\n"
 			"       List configured event channels for the (EVT) Eventing service.\n";
 		return NULL;
 




More information about the svn-commits mailing list