fix w deployu na mikrotik
This commit is contained in:
parent
46d9635d1e
commit
528b49f78e
22
app.py
22
app.py
@ -1296,7 +1296,7 @@ def deploy_mikrotik(host, hosts_content):
|
||||
exported = stdout.read().decode('utf-8').splitlines()
|
||||
existing_dns = {}
|
||||
|
||||
# Przetwarzamy aktualne wpisy z urządzenia
|
||||
# Parsujemy aktualne wpisy z urządzenia (format: "add address=... name=...")
|
||||
for line in exported:
|
||||
line = line.strip()
|
||||
if not line.startswith('add '):
|
||||
@ -1314,16 +1314,22 @@ def deploy_mikrotik(host, hosts_content):
|
||||
existing_dns[name_val] = address_val
|
||||
|
||||
desired_dns = {}
|
||||
# Parsujemy zawartość backupu w taki sam sposób jak wpisy aktualne
|
||||
# Parsujemy zawartość backupu/wdrażaną treść – obsługujemy dwa formaty:
|
||||
# 1. Format z tokenami ("add address=... name=...")
|
||||
# 2. Prosty format ("ip hostname")
|
||||
for line in hosts_content.splitlines():
|
||||
line = line.strip()
|
||||
if not line:
|
||||
continue
|
||||
if line.startswith('add '):
|
||||
line = line[4:].strip() # usuwamy "add "
|
||||
# Pomijamy linie nagłówkowe/stopowe
|
||||
if line.startswith('#') or 'Auto-hosts_upload:' in line or 'End_of_auto-hosts_upload:' in line:
|
||||
continue
|
||||
|
||||
if "address=" in line and "name=" in line:
|
||||
# Format: "add address=... name=..."
|
||||
# Jeśli linia zaczyna się od "add ", usuńmy go, choć może już być usunięty
|
||||
if line.startswith('add '):
|
||||
line = line[4:].strip()
|
||||
parts = line.split()
|
||||
address_val = None
|
||||
name_val = None
|
||||
@ -1334,6 +1340,13 @@ def deploy_mikrotik(host, hosts_content):
|
||||
name_val = part.replace('name=', '')
|
||||
if address_val and name_val:
|
||||
desired_dns[name_val] = address_val
|
||||
else:
|
||||
# Zakładamy prosty format: "ip hostname" (przynajmniej dwa tokeny)
|
||||
parts = line.split()
|
||||
if len(parts) >= 2:
|
||||
ip = parts[0]
|
||||
hostname = parts[1]
|
||||
desired_dns[hostname] = ip
|
||||
|
||||
# Dodajemy lub aktualizujemy wpisy, a zbędne usuwamy
|
||||
for name_val, ip_val in desired_dns.items():
|
||||
@ -1354,7 +1367,6 @@ def deploy_mikrotik(host, hosts_content):
|
||||
|
||||
ssh.close()
|
||||
|
||||
|
||||
@app.route('/deploy-now')
|
||||
def deploy_now():
|
||||
if 'user_id' not in session:
|
||||
|
Loading…
x
Reference in New Issue
Block a user