From cc7b516b09c670256a5221118a3e8c03feb40ab4 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Thu, 1 Apr 2010 14:45:22 +0000 Subject: [PATCH] -Fix defect where pxe netboot would not work if pxelinux.cfg was not pre-created git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@5641 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/pxe.pm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/xCAT-server/lib/xcat/plugins/pxe.pm b/xCAT-server/lib/xcat/plugins/pxe.pm index 5af895ada..9ca25d440 100644 --- a/xCAT-server/lib/xcat/plugins/pxe.pm +++ b/xCAT-server/lib/xcat/plugins/pxe.pm @@ -4,6 +4,7 @@ use Data::Dumper; use Sys::Syslog; use Socket; use File::Copy; +use File::Path; use Getopt::Long; my $addkcmdlinehandled; @@ -133,6 +134,10 @@ sub setstate { $kern->{kcmdline} =~ s/!myipfn!/$ipfn/g; } my $pcfg; + unless (-d $tftpdir."/pxelinux.cfg/") { + mkpath($tftpdir."/pxelinux.cfg/"); + } + open($pcfg,'>',$tftpdir."/pxelinux.cfg/".$node); my $cref=$chainhash{$node}->[0]; #$chaintab->getNodeAttribs($node,['currstate']); if ($cref->{currstate}) {