From 120fa47c0eaca4bf0b90ea829eed1b2af6f158b7 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Sun, 25 Mar 2012 15:16:05 +0000 Subject: [PATCH] Rework plugin_comand to use XCATSITEVALS instead of polling site table for select plugins git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@11985 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/sbin/xcatd | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/xCAT-server/sbin/xcatd b/xCAT-server/sbin/xcatd index d869b51ab..8ae54465c 100755 --- a/xCAT-server/sbin/xcatd +++ b/xCAT-server/sbin/xcatd @@ -1024,17 +1024,15 @@ sub plugin_command { if ($hdlspec =~ /^site:/) { #A site entry specifies a plugin my $sitekey = $hdlspec; $sitekey =~ s/^site://; - $sitetab = xCAT::Table->new('site'); - my $sent = $sitetab->getAttribs({key=>$sitekey},['value']); - if ($sent and $sent->{value}) { #A site style plugin specification is just like + if ($::XCATSITEVALS{$sitekey}) {#A site style plugin specification is just like #a static global, it grabs all nodes rather than some $useglobals = -1; #If they tried to specify anything, don't use the default global handlers at all unless (@nodes) { - $handler_hash{$sent->{value}} = 1; + $handler_hash{$::XCATSITEVALS{$sitekey}} = 1; $usesiteglobal = 1; } foreach (@nodes) { #Specified a specific plugin, not a table lookup - $handler_hash{$sent->{value}}->{$_} = 1; + $handler_hash{$::XCATSITEVALS{$sitekey}}->{$_} = 1; } } } elsif ($hdlspec =~ /:/) { #Specificed a table lookup path for plugin name