naprawa loga w /backup-all
This commit is contained in:
parent
55f9cbfb9a
commit
2904209332
5
app.py
5
app.py
@ -949,7 +949,10 @@ def backup_all():
|
|||||||
raise Exception(f"Daemon GET error: {resp.status_code} - {resp.text}")
|
raise Exception(f"Daemon GET error: {resp.status_code} - {resp.text}")
|
||||||
data = resp.json()
|
data = resp.json()
|
||||||
content = data.get("hosts", "")
|
content = data.get("hosts", "")
|
||||||
description = f'Backup (daemon) from {host.hostname}'
|
# Wyodrębnienie adresu IP demona
|
||||||
|
daemon_str = host.daemon_url.split("://")[-1]
|
||||||
|
daemon_ip = daemon_str.split(":")[0]
|
||||||
|
description = f'Backup (daemon) from {host.hostname} (Daemon IP: {daemon_ip})'
|
||||||
elif host.type == 'mikrotik':
|
elif host.type == 'mikrotik':
|
||||||
ssh = open_ssh_connection(host)
|
ssh = open_ssh_connection(host)
|
||||||
stdin, stdout, stderr = ssh.exec_command("/ip dns static export")
|
stdin, stdout, stderr = ssh.exec_command("/ip dns static export")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user