summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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 ]`
}