From 43371e4cb16c3e0c0c66584eda4be545c7bdc99b Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Tue, 16 Dec 2008 20:44:22 +0000 Subject: [PATCH] Merged revisions 164807 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ................ r164807 | russell | 2008-12-16 14:41:51 -0600 (Tue, 16 Dec 2008) | 17 lines 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 ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@164813 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/manager.c | 1 + 1 file changed, 1 insertion(+) diff --git a/main/manager.c b/main/manager.c index af2c269e19..76aa8678ff 100644 --- a/main/manager.c +++ b/main/manager.c @@ -146,6 +146,7 @@ static struct { } command_blacklist[] = { {{ "module", "load", NULL }}, {{ "module", "unload", NULL }}, + {{ "restart", "gracefully", NULL }}, }; struct mansession {