mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-10 18:45:53 +00:00
12 lines
307 B
Go
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")
|
|
}
|