From 9ecea8abde4ee9dc192b0261dea61c03d9850281 Mon Sep 17 00:00:00 2001 From: xq2005 Date: Thu, 7 Apr 2011 07:57:24 +0000 Subject: [PATCH] add msg for create statelite and stateless image on web gui git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9237 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-UI/lib/systemcmd.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/xCAT-UI/lib/systemcmd.php b/xCAT-UI/lib/systemcmd.php index 76c02c706..dfbdd641f 100644 --- a/xCAT-UI/lib/systemcmd.php +++ b/xCAT-UI/lib/systemcmd.php @@ -19,6 +19,11 @@ if (!isAuthenticated()){ if (isset($_GET["cmd"])) { // HTTP GET requests $cmd = $_GET["cmd"]; + $msg = NULL; + + if (isset($_GET["msg"])){ + $msg = $_GET["msg"]; + } $ret = ""; if ("ostype" == $cmd) { @@ -28,6 +33,6 @@ if (isset($_GET["cmd"])) { $ret = shell_exec($cmd); } - echo json_encode(array("rsp"=>$ret)); + echo json_encode(array("rsp"=>$ret, "msg" => $msg)); } ?> \ No newline at end of file