From c43115ed4ce6807a66d3b5318ca8db6180cd5a13 Mon Sep 17 00:00:00 2001 From: sakolish Date: Mon, 7 Jan 2008 17:57:53 +0000 Subject: [PATCH] Changed chvm usage - Line #136 git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@216 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT-2.0/xCAT/PPCvm.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/perl-xCAT-2.0/xCAT/PPCvm.pm b/perl-xCAT-2.0/xCAT/PPCvm.pm index e2e7ccbc7..6eae22b56 100644 --- a/perl-xCAT-2.0/xCAT/PPCvm.pm +++ b/perl-xCAT-2.0/xCAT/PPCvm.pm @@ -133,9 +133,9 @@ sub mkvm_parse_args { "mkvm -h|--help", "mkvm -v|--version", "mkvm [-V|--verbose] singlenode -i id -n name", - "mkvm [-V|--verbose] srccec -c destcec", + "mkvm [-V|--verbose] src_fsp -c dest_fsp", " -h writes usage information to standard output", - " -c copy lpars from srccec to destcec on single HMC", + " -c copy partitions from src_fsp to dest_fsp on single HMC", " -i new partition numeric id", " -n new partition name", " -v displays command version", @@ -804,7 +804,7 @@ sub create { if ( exists( $opt->{c} )) { my $result = clone( $exp, $lpar, $opt->{c}, $d ); foreach ( @$result ) { - push @values, [$lpar, $_]; + push @values, [$opt->{c}, $_]; } next; }