X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=PLC%2FMethods%2FGetBootMedium.py;fp=PLC%2FMethods%2FGetBootMedium.py;h=824840974d92568980dbdc088ce3d65b464532f4;hb=31996e41f306bb850e9309aaaf8d157137ece1f4;hp=53f68a1e5f693c6736d5f0d19b7126ac05ed7598;hpb=880e7c2c999eb2795ec3354c3e829cd1a62cf7c9;p=plcapi.git diff --git a/PLC/Methods/GetBootMedium.py b/PLC/Methods/GetBootMedium.py index 53f68a1..8248409 100644 --- a/PLC/Methods/GetBootMedium.py +++ b/PLC/Methods/GetBootMedium.py @@ -1,5 +1,3 @@ -# $Id$ -# $URL$ import random import base64 import os @@ -264,13 +262,13 @@ class GetBootMedium(Method): node_id=node['node_id'] # no support for deployment-based BootCD's, use kvariants instead - node_pldistro = GetNodePldistro (self.api).call(auth, node_id) + node_pldistro = GetNodePldistro (self.api,self.caller).call(auth, node_id) if node_pldistro: pldistro = node_pldistro - node_fcdistro = GetNodeFcdistro (self.api).call(auth, node_id) + node_fcdistro = GetNodeFcdistro (self.api,self.caller).call(auth, node_id) if node_fcdistro: fcdistro = node_fcdistro - node_arch = GetNodeArch (self.api).call(auth,node_id) + node_arch = GetNodeArch (self.api,self.caller).call(auth,node_id) if node_arch: arch = node_arch return (pldistro,fcdistro,arch)