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
This commit is contained in:
sakolish 2008-01-07 17:57:53 +00:00
parent a1a44a916a
commit c43115ed4c

View File

@ -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;
}