try o fix ubuntu build

This commit is contained in:
Mateusz Gruszczyński
2025-10-24 10:31:58 +02:00
parent c7ee019d28
commit f1fde8e6dd

View File

@@ -930,7 +930,7 @@ def update_motd(enabled: bool, info, ipv6_enabled: bool):
################################ NPM / ANGIE ################################ ################################ NPM / ANGIE ################################
OS: {OSREL['PRETTY']} ({OSREL['ID']} {OSREL['VERSION_ID']}) OS: {OSREL['PRETTY']} ({OSREL['ID']} {OSREL['VERSION_ID']})
Nginx Proxy Manager: http://{ip}:81 Nginx Proxy Manager: http://{ip}:81
Angie stats & Prometheus: http://{ip}:82/console | http://{ip}:82/p8s Angie & Prometheus stats: http://{ip}:82/console | http://{ip}:82/p8s
Angie: {angie_v} (conf: /etc/angie -> /etc/nginx, reload: angie -s reload) Angie: {angie_v} (conf: /etc/angie -> /etc/nginx, reload: angie -s reload)
Node.js: v{node_v} Yarn: v{yarn_v} Node.js: v{node_v} Yarn: v{yarn_v}
NPM app: v{npm_v} NPM app: v{npm_v}
@@ -958,11 +958,11 @@ def print_summary(info, ipv6_enabled, dark_enabled, update_mode):
print(f"OS: {OSREL['PRETTY']} ({OSREL['ID']} {OSREL['VERSION_ID']})") print(f"OS: {OSREL['PRETTY']} ({OSREL['ID']} {OSREL['VERSION_ID']})")
print(f"Mode: {'UPDATE' if update_mode else 'INSTALL'}") print(f"Mode: {'UPDATE' if update_mode else 'INSTALL'}")
print(f"NPM panel address: http://{ip}:81") print(f"NPM panel address: http://{ip}:81")
print(f"angie stats & prometheus stats: http://{ip}:82/console | http://{ip}:82/p8s ") print(f"Angie & Prometheus stats: http://{ip}:82/console | http://{ip}:82/p8s ")
print(f"Angie: v{angie_v} (unit: angie.service, PID: /run/angie/angie.pid)") print(f"Angie: v{angie_v} (unit: angie.service, PID: /run/angie/angie.pid)")
print(f"Node.js: v{node_v}") print(f"Node.js: v{node_v}")
print(f"Yarn: v{yarn_v}") print(f"Yarn: v{yarn_v}")
print(f"NPM (aplikacja): v{npm_v}") print(f"NPM (app): v{npm_v}")
print(f"IPv6: {'ENABLED' if ipv6_enabled else 'DISABLED (in configs too)'}") print(f"IPv6: {'ENABLED' if ipv6_enabled else 'DISABLED (in configs too)'}")
print(f"Dark mode (TP): {'YES' if dark_enabled else 'NO'}") print(f"Dark mode (TP): {'YES' if dark_enabled else 'NO'}")
print("Paths: /opt/npm (app), /data (data), /etc/angie (conf), /var/log/angie (logs)") print("Paths: /opt/npm (app), /data (data), /etc/angie (conf), /var/log/angie (logs)")