feat: remove tailscale from iso

This commit is contained in:
2024-08-17 01:25:02 +08:00
parent c2d5ea6060
commit f78895ea62
3 changed files with 5 additions and 13 deletions

View File

@@ -52,7 +52,7 @@ function main() {
echo "Attempting to retrieve IP Address"
start_time=$(date +%s)
while true; do
if IP_ADDRESS="$(sudo qm agent "${VMID}" network-get-interfaces 2>/dev/null | jq -r '.[] | select(.name == "tailscale0") | .["ip-addresses"][] | select(.["ip-address-type"] == "ipv4")')"; then
if IP_ADDRESS="$(sudo qm agent "${VMID}" network-get-interfaces 2>/dev/null | jq -r '.[] | select(.name != "lo") | .["ip-addresses"][] | select(.["ip-address-type"] == "ipv4")')"; then
if [ -n "${IP_ADDRESS}" ]; then
echo "Retrieved IP Address: ${IP_ADDRESS}"
break