From 8e2e538d3992ef82c69d6a63c47a594bb2c4d39c Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Thu, 29 Nov 2007 16:01:49 +0000 Subject: [PATCH] Update yaboot to interact with dhcp git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@92 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server-2.0/usr/lib/xcat/plugins/yaboot.pm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/xCAT-server-2.0/usr/lib/xcat/plugins/yaboot.pm b/xCAT-server-2.0/usr/lib/xcat/plugins/yaboot.pm index dc3a91efa..758ebcaca 100644 --- a/xCAT-server-2.0/usr/lib/xcat/plugins/yaboot.pm +++ b/xCAT-server-2.0/usr/lib/xcat/plugins/yaboot.pm @@ -6,6 +6,7 @@ use Socket; my $request; my $callback; +my $sub_req; my $dhcpconf = "/etc/dhcpd.conf"; my $tftpdir = "/tftpboot"; #my $dhcpver = 3; @@ -73,8 +74,13 @@ sub setstate { #print $pcfg "LABEL xCAT\n"; my $chaintab = xCAT::Table->new('chain'); my $stref = $chaintab->getNodeAttribs($node,['currstate']); + $sub_req->({command=>['makedhcp'], + node=>[$node]},$callback); if ($stref and $stref->{currstate} eq "boot") { #TODO use omapi to set the filename so no netboot is attempted? + $sub_req->({command=>['makedhcp'], + node=>[$node], + arg=>['-s','filename = \"xcat/nonexistant_file_to_intentionally_break_netboot_for_localboot_to_work\";']},$callback); print $pcfg "bye\n"; close($pcfg); } elsif ($kern and $kern->{kernel}) { @@ -124,7 +130,7 @@ sub pass_along { sub process_request { $request = shift; $callback = shift; - my $sub_req = shift; + $sub_req = shift; my @args; my @nodes; if (ref($request->{node})) {