X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=getsshkeys.py;h=fb4c2a7a4c77b1a3e6958e4fd966fdbbb20ef17f;hb=7f16b4c8e96688b16152b62ec1012ab5bf29d95d;hp=68d29452d1a97bd95dabc0e31312a0e53edaeb75;hpb=4d56ef5473c6486c321dd2797be45b45b0606dae;p=monitor.git diff --git a/getsshkeys.py b/getsshkeys.py index 68d2945..fb4c2a7 100755 --- a/getsshkeys.py +++ b/getsshkeys.py @@ -18,7 +18,7 @@ except: args = {} args['known_hosts'] = os.environ['HOME'] + os.sep + ".ssh" + os.sep + "known_hosts" try: - import config + from monitor import config args['XMLRPC_SERVER'] = config.API_SERVER except: args['XMLRPC_SERVER'] = 'https://boot.planet-lab.org/PLCAPI/' @@ -155,7 +155,7 @@ class SSHKnownHosts: nodenetworks = node['nodenetwork_ids'] if len(nodenetworks)==0: return (host, None, None, None) - # the [0] subscript to node['nodenetwork_ids'] means + # the [0] subscript to node['interface_ids'] means # that this function wont work with multihomed nodes l_nw = self.nodenetworks.get(nodenetworks[0],None) if l_nw is None: return (host, None, None, None)