removed another bunch of references to geni
[sfa.git] / sfa / server / slicemgr.py
1 ### $Id$
2 ### $URL$
3
4 import os
5 import sys
6 import datetime
7 import time
8 from sfa.util.server import *
9
10 class SliceMgr(SfaServer):
11
12   
13     ##
14     # Create a new slice manager object.
15     #
16     # @param ip the ip address to listen on
17     # @param port the port to listen on
18     # @param key_file private key filename of registry
19     # @param cert_file certificate filename containing public key (could be a GID file)     
20
21     def __init__(self, ip, port, key_file, cert_file, config = "/etc/sfa/sfa_config"):
22         SfaServer.__init__(self, ip, port, key_file, cert_file)
23         self.server.interface = 'slicemgr'