Files
pulse/internal/dockeragent/rootless_endpoint_other.go
2026-08-31 22:17:07 +01:00

12 lines
307 B
Go

//go:build !linux
package dockeragent
import "errors"
func collectorOwnsRootlessEndpoint(string) bool { return false }
func collectorRootlessRuntimeCandidates(RuntimeKind) ([]runtimeCandidate, error) {
return nil, errors.New("collector-owned rootless container runtimes are supported only on Linux")
}