From 1f8974af4fd58bdd0096efbd5684861336fc805f Mon Sep 17 00:00:00 2001 From: ertaozh Date: Mon, 18 May 2015 08:14:27 -0400 Subject: [PATCH] fix bug 4667:rhels6.5 diskful installation failed with netboot=yaboot, for netboot=nimol --- xCAT-server/lib/xcat/plugins/dhcp.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/dhcp.pm b/xCAT-server/lib/xcat/plugins/dhcp.pm index dec7c3e59..90e96c252 100755 --- a/xCAT-server/lib/xcat/plugins/dhcp.pm +++ b/xCAT-server/lib/xcat/plugins/dhcp.pm @@ -664,7 +664,7 @@ sub addnode } elsif ($nrent and $nrent->{netboot} and $nrent->{netboot} eq 'petitboot') { $lstatements = 'option conf-file \"http://'.$nxtsrv.'/tftpboot/petitboot/'.$node.'\";'.$lstatements; } elsif ($nrent and $nrent->{netboot} and $nrent->{netboot} eq 'nimol') { - $lstatements = 'supersede server.filename=\"/vios/nodes/'.$node.'\"'.$lstatements; + $lstatements = 'supersede server.filename=\"/vios/nodes/'.$node.'\";'.$lstatements; }