From 9560c5167fc07d1c464bcdd5a4d39ecc0c030665 Mon Sep 17 00:00:00 2001 From: spiritlhl <103393591+spiritLHLS@users.noreply.github.com> Date: Mon, 31 Jul 2023 22:18:42 +0800 Subject: [PATCH] Update install_pve.sh --- scripts/install_pve.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install_pve.sh b/scripts/install_pve.sh index f5be420..880bb82 100644 --- a/scripts/install_pve.sh +++ b/scripts/install_pve.sh @@ -988,9 +988,9 @@ fix_interfaces_ipv6_auto_type # 特殊处理Hetzner和Azure的情况 if [[ $dmidecode_output == *"Hetzner_vServer"* ]] || [[ $dmidecode_output == *"Microsoft Corporation"* ]]; then auto_interface=$(grep '^auto ' /etc/network/interfaces | grep -v '^auto lo' | awk '{print $2}' | head -n 1) - if ! grep -q "^post-up ${$ethtool_path}" /etc/network/interfaces; then + if ! grep -q "^post-up ${ethtool_path}" /etc/network/interfaces; then chattr -i /etc/network/interfaces - echo "post-up ${$ethtool_path} -K $auto_interface tx off rx off" >> /etc/network/interfaces + echo "post-up ${ethtool_path} -K $auto_interface tx off rx off" >> /etc/network/interfaces chattr +i /etc/network/interfaces fi fi