WIP: rebase for 2026-05-18 #7

Draft
codinget wants to merge 234 commits from rebase/2026-05-18 into webnet
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 ]`
}