From c2da563fef77a9242a70321722ef3d4856cc566d Mon Sep 17 00:00:00 2001 From: Tom Proctor Date: Fri, 17 Apr 2026 10:39:47 +0100 Subject: [PATCH] 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 --- tstest/integration/vms/distros.go | 5 ++--- 1 file 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 ]` }