From 38e619fcdbd909c0c8f5d7b42cb404df986d310b Mon Sep 17 00:00:00 2001 From: zhaoertao Date: Tue, 16 Aug 2011 04:08:46 +0000 Subject: [PATCH] fix bug 3390625, delete check option -m for 'set_lpar_name' git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10292 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/FSPvm.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl-xCAT/xCAT/FSPvm.pm b/perl-xCAT/xCAT/FSPvm.pm index 7f7e54486..328b01e4b 100644 --- a/perl-xCAT/xCAT/FSPvm.pm +++ b/perl-xCAT/xCAT/FSPvm.pm @@ -306,8 +306,8 @@ sub chvm_parse_args { } } if (exists($opt{lparname}) && - (exists($opt{p}) || exists($opt{i}) || exists($opt{m}) || exists($opt{r}))) { - return (usage("lparname should NOT be used with -p, -i, -m or -r.")); + (exists($opt{p}) || exists($opt{i}) || exists($opt{r}))) { + return (usage("lparname should NOT be used with -p, -i or -r.")); } }