From d2cda7eb9e930f4a873537964ab5fa7fcad0f393 Mon Sep 17 00:00:00 2001 From: immarvin <yangsbj@cn.ibm.com> Date: Mon, 28 Jul 2014 02:42:57 -0700 Subject: [PATCH] fix defect #4201 grub2 failure with mixed case mac address --- xCAT-server/lib/xcat/plugins/grub2.pm | 2 +- xCAT-server/lib/xcat/plugins/yaboot.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/grub2.pm b/xCAT-server/lib/xcat/plugins/grub2.pm index 04650a69d..bb2e0ed15 100644 --- a/xCAT-server/lib/xcat/plugins/grub2.pm +++ b/xCAT-server/lib/xcat/plugins/grub2.pm @@ -248,7 +248,7 @@ sub setstate { } if ($nodemac =~ /:/) { - my $tmp = $nodemac; + my $tmp = lc($nodemac); $tmp =~ s/(..):(..):(..):(..):(..):(..)/$1-$2-$3-$4-$5-$6/g; my $pname = "grub.cfg-01-" . $tmp; unlink($tftpdir."/boot/grub2/".$pname); diff --git a/xCAT-server/lib/xcat/plugins/yaboot.pm b/xCAT-server/lib/xcat/plugins/yaboot.pm index 3ce67366f..6d08786c8 100644 --- a/xCAT-server/lib/xcat/plugins/yaboot.pm +++ b/xCAT-server/lib/xcat/plugins/yaboot.pm @@ -289,7 +289,7 @@ sub setstate { } } if ($nodemac =~ /:/) { - my $tmp = $nodemac; + my $tmp =lc($nodemac); $tmp =~ s/(..):(..):(..):(..):(..):(..)/$1-$2-$3-$4-$5-$6/g; my $pname = "yaboot.conf-" . $tmp; unlink($tftpdir."/".$pname);