From c3cc79f8634cee85ea2b5e109284ded750939b1a Mon Sep 17 00:00:00 2001 From: angli-xcat Date: Wed, 20 Jul 2011 07:30:24 +0000 Subject: [PATCH] Bug fix ID 3371100 the second parameter of command "imgexport" should be the full path of generated .tgz file (including path and name). To clarify this I revise its usage info. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10124 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/imgport.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/imgport.pm b/xCAT-server/lib/xcat/plugins/imgport.pm index 90690819d..3807b812e 100644 --- a/xCAT-server/lib/xcat/plugins/imgport.pm +++ b/xCAT-server/lib/xcat/plugins/imgport.pm @@ -139,7 +139,7 @@ sub xexport { push@{ $rsp{data} }, "imgexport: Creates a tarball (bundle) of an existing xCAT image"; push@{ $rsp{data} }, "Usage: "; push@{ $rsp{data} }, "\timgexport [-h|--help]"; - push@{ $rsp{data} }, "\timgexport [directory] [[-e|--extra ] ... ] [-p|--postscripts ] [-v]"; + push@{ $rsp{data} }, "\timgexport [destination] [[-e|--extra ] ... ] [-p|--postscripts ] [-v]"; if($ec){ $rsp{errorcode} = $ec; } $callback->(\%rsp); };