From 6565f24da9f4eb36702339ba290213995fcc902f Mon Sep 17 00:00:00 2001 From: Greg Steuck Date: Mon, 10 Dec 2018 02:20:16 -0800 Subject: executor: add setuid sandbox for openbsd * executor/common_bsd: add setuid sandbox Fixes #833 cc @mptre * Reduced duplications, resolved TODO. --- pkg/host/host_openbsd.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/host') diff --git a/pkg/host/host_openbsd.go b/pkg/host/host_openbsd.go index f750929a5..35e8a0298 100644 --- a/pkg/host/host_openbsd.go +++ b/pkg/host/host_openbsd.go @@ -14,4 +14,5 @@ func isSupported(c *prog.Syscall, sandbox string) (bool, string) { func init() { checkFeature[FeatureCoverage] = unconditionallyEnabled checkFeature[FeatureNetworkInjection] = unconditionallyEnabled + checkFeature[FeatureSandboxSetuid] = unconditionallyEnabled } -- cgit mrf-deployment