From cea06ec4584c84209d7abc4cb5f6848f728dc87a Mon Sep 17 00:00:00 2001 From: zhaoertao Date: Tue, 16 Aug 2011 04:07:28 +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/branches/2.6@10291 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.")); } }