summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTom Proctor <tomhjp@users.noreply.github.com>2026-04-17 10:39:47 +0100
committerGitHub <noreply@github.com>2026-04-17 10:39:47 +0100
commitc2da563fef77a9242a70321722ef3d4856cc566d (patch)
treea2f8037fa27f40967489813ed16d04d66ba85d0e
parent50d7176333c1be6519b4754bf9059a49dc58eb63 (diff)
downloadtailscale-c2da563fef77a9242a70321722ef3d4856cc566d.tar.xz
tailscale-c2da563fef77a9242a70321722ef3d4856cc566d.zip
tstest/integration/vms: skip cloud-init package updates (#19443)
The package updates started getting really slow yesterday. We can do better, but attempt a band aid fix for now, as the test is failing about a third of the time on PR CI. Updates tailscale/corp#40465 Change-Id: Icf53292ba83dd1ed76b9bdf9fb94a8f6fb448c07 Signed-off-by: Tom Proctor <tomhjp@users.noreply.github.com>
-rw-r--r--tstest/integration/vms/distros.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/tstest/integration/vms/distros.go b/tstest/integration/vms/distros.go
index 94f11c77a..b6312dba4 100644
--- a/tstest/integration/vms/distros.go
+++ b/tstest/integration/vms/distros.go
@@ -35,11 +35,10 @@ func (d *Distro) InstallPre() string {
return ` - [ dnf, install, "-y", iptables ]`
case "apt":
- return ` - [ apt-get, update ]
- - [ apt-get, "-y", install, curl, "apt-transport-https", gnupg2 ]`
+ return ` - [ apt-get, "-y", install, curl, "apt-transport-https", gnupg2 ]`
case "apk":
- return ` - [ apk, "-U", add, curl, "ca-certificates", iptables, ip6tables ]
+ return ` - [ apk, add, curl, "ca-certificates", iptables, ip6tables ]
- [ modprobe, tun ]`
}