From 5371f78dbbf9e06088299fca994af99c6531354f Mon Sep 17 00:00:00 2001 From: Jia Zhao Date: Tue, 24 Mar 2015 15:30:17 +0800 Subject: [PATCH] setting vpd.uuid for powerkvm nodes during nodeimport --- xCAT-server/lib/xcat/plugins/profilednodes.pm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/xCAT-server/lib/xcat/plugins/profilednodes.pm b/xCAT-server/lib/xcat/plugins/profilednodes.pm index a4c2f4d84..1fa828253 100644 --- a/xCAT-server/lib/xcat/plugins/profilednodes.pm +++ b/xCAT-server/lib/xcat/plugins/profilednodes.pm @@ -471,6 +471,7 @@ Usage: my $mac_addr_mode = 0; my $switch_mode = 0; + my $powerkvm_mode = 0; # Parse and validate the hostinfo string. The real hostnames will be generated here. xCAT::MsgUtils->message('S', "Parsing hostinfo string and validate it."); my ($hostinfo_dict_ref, $invalid_records_ref) = validate_node_entries(); @@ -499,6 +500,10 @@ Usage: { $switch_mode = 1; } + if(defined($hostinfo_dict{$mynode}{'vmhost'})) + { + $powerkvm_mode = 1; + } } # cannot mix switch discovery with mac import @@ -535,6 +540,20 @@ Usage: $warnstr = "Warning: failed to import some nodes."; setrsp_progress($warnstr); } + + # create default uuid for PowerKVM nodes + if ($powerkvm_mode) { + my $vpdtab = xCAT::Table->new( 'vpd', -create=>1, -autocommit=>0 ); + foreach (@nodelist) { + my $keyhash; + my $updatehash; + $keyhash->{'node'} = $_; + $updatehash->{'uuid'} = '00000000-0000-0000-0000-000000000000'; + $vpdtab->setAttribs($keyhash, $updatehash); + } + $vpdtab->commit; + } + # create switch, port, interface relationship. if($switch_mode){ #debug message.