From 34df3dccb044817fbc5363ad01765e77c17a6248 Mon Sep 17 00:00:00 2001 From: wanghuaz Date: Tue, 30 Oct 2012 12:34:16 +0000 Subject: [PATCH] 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 --- xCAT-server/lib/xcat/plugins/kit.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/kit.pm b/xCAT-server/lib/xcat/plugins/kit.pm index c795670fb..75d71efb8 100644 --- a/xCAT-server/lib/xcat/plugins/kit.pm +++ b/xCAT-server/lib/xcat/plugins/kit.pm @@ -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 "; + push@{ $rsp{data} }, "\tchkkitcomp [-V|--verbose] -i "; 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 );