Changeset d2e86f6db04f8ac68bba3cae6ccbbb0e34edd0b6
- Timestamp:
- 01/09/12 17:08:28 (4 months ago)
- Author:
- Ted Faber <faber@…>
- Children:
- ee950c2260d0e0d90dc0a6a4d78740b92459415b
- Parents:
- c7141dc6739a15071ba1ae8386e6457078c1cc41
- git-committer:
- Ted Faber <faber@isi.edu> / 2012-01-09T17:08:28Z-0800
- Message:
-
Scratch some old files
- Location:
- fedd/federation
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r4c65f67
|
rd2e86f6
|
|
| 7 | 7 | from remote_service import xmlrpc_handler, soap_handler, service_caller |
| 8 | 8 | |
| 9 | | from proxy_segment import proxy_segment |
| | 9 | from ssh_emulab_segment import ssh_emulab_segment |
| 10 | 10 | |
| 11 | 11 | |
| 12 | | class protogeni_proxy(proxy_segment): |
| | 12 | class protogeni_proxy(ssh_emulab_segment): |
| 13 | 13 | class ProtoGENIError(Exception): |
| 14 | 14 | def __init__(self, op, code, output): |
| … |
… |
|
| 20 | 20 | def __init__(self, log=None, keyfile=None, debug=False, |
| 21 | 21 | ch_url=None, sa_url=None, cm_url=None): |
| 22 | | proxy_segment.__init__(self, log=log, keyfile=keyfile, debug=debug) |
| | 22 | ssh_emulab_segment.__init__(self, log=log, keyfile=keyfile, |
| | 23 | debug=debug) |
| 23 | 24 | |
| 24 | 25 | self.ProtoGENIError = protogeni_proxy.ProtoGENIError |