From: Tony Mack Date: Mon, 30 Apr 2007 17:52:41 +0000 (+0000) Subject: - include initscripts X-Git-Tag: PLCAPI-4.2-0~139 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=b3d7b271cf109e1be4ad85554ab571aaaac9a98e;p=plcapi.git - include initscripts --- diff --git a/PLC/Methods/GetSliceTicket.py b/PLC/Methods/GetSliceTicket.py index 822d003..cd73f7b 100644 --- a/PLC/Methods/GetSliceTicket.py +++ b/PLC/Methods/GetSliceTicket.py @@ -6,6 +6,7 @@ from PLC.Parameter import Parameter, Mixed from PLC.Slices import Slice, Slices from PLC.Auth import Auth from PLC.GPG import gpg_sign, gpg_verify +from PLC.InitScripts import InitScript, InitScripts from PLC.Methods.GetSlivers import get_slivers @@ -53,9 +54,12 @@ class GetSliceTicket(Method): # Tickets are the canonicalized XML-RPC methodResponse # representation of a partial GetSlivers() response, i.e., + + initscripts = InitScripts(self.api, {'enabled': True}) data = { 'timestamp': int(time.time()), + 'initscripts': initscripts, 'slivers': get_slivers(self.api, [slice['slice_id']]), }