示例#1
0
文件: cli.py 项目: saillinux/cobbler
    def __init__(self):
        # Load server ip and ports from local config
        self.url_cobbler_api = utils.local_get_cobbler_api_url()
        self.url_cobbler_xmlrpc = utils.local_get_cobbler_xmlrpc_url()

        # FIXME: allow specifying other endpoints, and user+pass
        self.parser        = optparse.OptionParser()
        self.remote        = xmlrpclib.Server(self.url_cobbler_api)
        self.shared_secret = utils.get_shared_secret()
示例#2
0
    def __init__(self):
        # Load server ip and ports from local config
        self.url_cobbler_api = utils.local_get_cobbler_api_url()
        self.url_cobbler_xmlrpc = utils.local_get_cobbler_xmlrpc_url()

        # FIXME: allow specifying other endpoints, and user+pass
        self.parser = optparse.OptionParser()
        self.remote = xmlrpclib.Server(self.url_cobbler_api)
        self.shared_secret = utils.get_shared_secret()
示例#3
0
文件: cli.py 项目: GunioRobot/cobbler
 def __init__(self,endpoint="http://127.0.0.1/cobbler_api"):
     # FIXME: allow specifying other endpoints, and user+pass
     self.parser        = optparse.OptionParser()
     self.remote        = xmlrpclib.Server(endpoint)
     self.shared_secret = utils.get_shared_secret()