From cc33366c4bb1c1f1b2f23271e805158b72a8fe0e Mon Sep 17 00:00:00 2001 From: admManuel Date: Thu, 14 Aug 2025 09:57:04 +0000 Subject: [PATCH] Update Proxmox/ThunderboltNetworking_PVE9.md --- Proxmox/ThunderboltNetworking_PVE9.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Proxmox/ThunderboltNetworking_PVE9.md b/Proxmox/ThunderboltNetworking_PVE9.md index 88422b0..5e3f630 100644 --- a/Proxmox/ThunderboltNetworking_PVE9.md +++ b/Proxmox/ThunderboltNetworking_PVE9.md @@ -147,19 +147,19 @@ retry_failed_targets() { local list="${FAILMAP[$iface]}" [[ -z "$list" ]] && return 0 - log_line "$ICON_INFO" "Retry fehlgeschlagener Pings über $(ci "$iface"): $list" + log_line "$ICON_INFO" "Retry fehlgeschlagener Pings: $list" local -a new_fail=() local ip for ip in $list; do if ping_host "$iface" "$ip"; then - log_line "$ICON_OK" "Retry erfolgreich: $ip über $(ci "$iface")" + log_line "$ICON_OK" "Retry erfolgreich: $ip" else - log_line "$ICON_ERR" "Retry fehlgeschlagen: $ip über $(ci "$iface")" + log_line "$ICON_ERR" "Retry fehlgeschlagen: $ip" new_fail+=("$ip") fi done if (( ${#new_fail[@]} == 0 )); then - log_line "$ICON_OK" "Alle zuvor fehlgeschlagenen Ziele über $(ci "$iface") nun erreichbar" + log_line "$ICON_OK" "Alle zuvor fehlgeschlagenen Ziele nun erreichbar" unset 'FAILMAP[$iface]' else FAILMAP[$iface]="${new_fail[*]}" @@ -190,11 +190,11 @@ restart_with_checks() { local ip for ip in "${targets[@]}"; do if ping_host "$iface" "$ip"; then - log_line "$ICON_OK" "Ping erfolgreich: $ip über $(ci "$iface")" + log_line "$ICON_OK" "Ping erfolgreich: $ip" else all_ok=0 failed_now+=("$ip") - log_line "$ICON_ERR" "Ping fehlgeschlagen: $ip über $(ci "$iface")" + log_line "$ICON_ERR" "Ping fehlgeschlagen: $ip" fi done