stupid charlie, stupid

master
Charlie Jacomme 6 years ago
parent e167047f23
commit 979accb43f

@ -14,7 +14,7 @@ api_username = config.get('Re2o', 'username')
def regen_dhcp(api_client):
host_mac_ip = {}
for hmi in api_client.view("dhcp/hostmacip/")['results']:
for hmi in api_client.list("dhcp/hostmacip/"):
if hmi['extension'] not in host_mac_ip.keys():
host_mac_ip[hmi['extension']] = []
host_mac_ip[hmi['extension']].append((hmi['hostname'],
@ -42,7 +42,7 @@ api_client = Re2oAPIClient(api_hostname, api_username, api_password)
client_hostname = socket.gethostname().split('.', 1)[0]
for service in api_client.view("services/regen")['results']:
for service in api_client.list("services/regen"):
#if service['hostname'] == client_hostname and \
# service['service_name'] == 'dhcp' and \
# service['need_regen']:

Loading…
Cancel
Save