diff --git a/perl-xCAT/xCAT/PPCboot.pm b/perl-xCAT/xCAT/PPCboot.pm index cb5f145f4..d94918f5c 100644 --- a/perl-xCAT/xCAT/PPCboot.pm +++ b/perl-xCAT/xCAT/PPCboot.pm @@ -11,6 +11,7 @@ use xCAT::Usage; # Parse the command line for options and operands ########################################################################## sub parse_args { + my $request = shift; my %opt = (); my $cmd = $request->{command}; @@ -204,6 +205,11 @@ sub rnetboot { C => $o->{client}, m => $o->{mac} ); + ##################################### + # Strip colons from mac address + ##################################### + $opt{m} =~ s/://g; + ##################################### # Force LPAR shutdown ##################################### @@ -336,3 +342,4 @@ sub rnetboot { +