fix bug 4213 [FVT on Power 8 DFM]rnetboot -v returns wrong command version

This commit is contained in:
zhaoertao 2014-07-31 01:02:47 -07:00
parent 8cd8a891c4
commit 78228d5f8c

View File

@ -21,7 +21,6 @@ sub parse_args {
my %opt = ();
my $cmd = $request->{command};
my $args = $request->{arg};
my @VERSION = qw( 2.1 );
#############################################
# Responds with usage statement
@ -60,7 +59,8 @@ sub parse_args {
# Option -v for version
####################################
if ( exists( $opt{v} )) {
return( \@VERSION );
my $version = xCAT::Utils->Version();
return ([$version]);
}
if ( exists( $opt{s} ) ){