Update install_pve7.sh

This commit is contained in:
spiritLHLS 2023-02-13 19:46:15 +08:00 committed by GitHub
parent 211a759faf
commit 9f674ffaeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,17 @@ if ! command -v curl > /dev/null 2>&1; then
apt-get install -y curl
fi
curl -L https://raw.githubusercontent.com/spiritLHLS/one-click-installation-script/main/check_sudo.sh -o check_sudo.sh && chmod +x check_sudo.sh && bash check_sudo.sh > /dev/null 2>&1
sed -i 's/precedence ::ffff:0:0\/96 100/precedence ::ffff:0:0\/96 40/g' /etc/gai.conf
ip_type=$(curl -s ip.sb | grep -oP '(?<=is )(.+)(?=\.)')
if [ -z "$ip_type" ]; then
echo "Error: curl request failed"
exit 1
fi
if [ "$ip_type" != "IPv4" ]; then
priority=$(grep precedence /etc/gai.conf | grep -oP '(?<=precedence ::/0 )\d+')
fi
if [ "$ip_type" = "IPv6" ] && [ "$priority" -lt "100" ]; then
echo "precedence ::/0 100" > /etc/gai.conf
fi
# sysctl -w net.ipv6.conf.all.disable_ipv6=1
# sysctl -w net.ipv6.conf.default.disable_ipv6=1
apt-get install gnupg -y