Removed --overwrite option in chkkitcomp, since chkkitcomp could verify the kit component list correctly.

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14160 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
wanghuaz 2012-10-30 12:34:16 +00:00
parent e6f9e57a98
commit 34df3dccb0

View File

@ -2222,7 +2222,7 @@ sub chkkitcomp
push@{ $rsp{data} }, "chkkitcomp: Check if kit component fits to osimage";
push@{ $rsp{data} }, "Usage: ";
push@{ $rsp{data} }, "\tchkkitcomp [-h|--help]";
push@{ $rsp{data} }, "\tchkkitcomp [-o|--overwrite] [-V|--verbose] -i <osimage> <kitcompname_list>";
push@{ $rsp{data} }, "\tchkkitcomp [-V|--verbose] -i <osimage> <kitcompname_list>";
xCAT::MsgUtils->message( "I", \%rsp, $callback );
};
@ -2237,7 +2237,6 @@ sub chkkitcomp
GetOptions(
'h|help' => \$help,
'V|verbose' => \$::VERBOSE,
'o|overwrite' => \$overwrite,
'i=s' => \$osimage
);