Changeset 3c6dbec
- Timestamp:
- Sep 9, 2009 10:45:40 AM (15 years ago)
- Branches:
- axis_example, compt_changes, info-ops, master, version-2.00, version-3.01, version-3.02
- Children:
- 32e7d93
- Parents:
- 11860f52
- Location:
- fedd/federation
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
fedd/federation/deter_impl.py
r11860f52 r3c6dbec 1 1 #!/usr/local/bin/python 2 2 3 from access importaccess3 import emulab_access 4 4 from experiment_control import experiment_control_local 5 5 from split import split_local … … 32 32 self.cert_pwd = config.get("globals", "cert_pwd"); 33 33 self.trusted_certs = config.get("globals", "trusted_certs"); 34 self.access_type = config.get("globals", "access_type", "emulab") 34 35 35 36 access_db = config.get("globals", "accessdb") … … 45 46 46 47 if config.has_section("access"): 47 self.access = access(config, self.auth) 48 if self.access_type == "emulab": 49 self.access = emulab_access.access(config, self.auth) 50 else: 51 raise RuntimeError("Unknown access_type: %s" % \ 52 self.access_type) 48 53 self.soap_services.update(self.access.soap_services) 49 54 self.xmlrpc_services.update(self.access.xmlrpc_services)
Note: See TracChangeset
for help on using the changeset viewer.