From 3fd00bd91c399465148f2dc334ccf5a49a0f3ad2 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Tue, 26 Jan 2010 16:22:52 +0000 Subject: [PATCH] need auth in this context --- PLC/Methods/GetBootMedium.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PLC/Methods/GetBootMedium.py b/PLC/Methods/GetBootMedium.py index c274a51..2eb52f9 100644 --- a/PLC/Methods/GetBootMedium.py +++ b/PLC/Methods/GetBootMedium.py @@ -244,7 +244,7 @@ class GetBootMedium(Method): return file # see also GetNodeFlavour that does similar things - def get_nodefamily (self, node): + def get_nodefamily (self, node, auth): pldistro = self.api.config.PLC_FLAVOUR_NODE_PLDISTRO fcdistro = self.api.config.PLC_FLAVOUR_NODE_FCDISTRO arch = self.api.config.PLC_FLAVOUR_NODE_ARCH @@ -441,7 +441,7 @@ class GetBootMedium(Method): nodename = "".join(map(hexa2,tempbytes)) # get nodefamily - (pldistro,fcdistro,arch) = self.get_nodefamily(node) + (pldistro,fcdistro,arch) = self.get_nodefamily(node,auth) self.nodefamily="%s-%s-%s"%(pldistro,fcdistro,arch) # apply on globals -- 2.43.0