tka: keep the CompactionDefaults alongside the other limits #6

Merged
codinget merged 216 commits from upstream/2026-05-18 into main 2026-05-18 21:22:49 +02:00
Showing only changes of commit c2da563fef - Show all commits
+2 -3
View File
@@ -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 ]`
}