alexandrev-tibco 2025-08-30 10:02:57 +02:00
parent 95489e69d9
commit da1082077e
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ update_notes() {
# Comandos por OS
case "$os" in
alpine)
update_cmd="apk update && apk upgrade --no-cache"
update_cmd="tries=5; for i in \$(seq 1 \$tries); do if apk update; then ok=1; break; else echo \"[WARN] apk update failed (\$i/\$tries). Retrying in \$((i*2))s...\"; sleep \$((i*2)); fi; done; [ \"\${ok:-0}\" = \"1\" ] || echo \"[WARN] Proceeding with stale indexes\"; apk upgrade --no-cache || echo \"[WARN] apk upgrade failed; continuing\""
install_base_pkgs="apk add --no-cache docker openssh jq"
# Comprobar si tailscale está instalado