Files
podman/vendor/go.podman.io/common/pkg/systemd/systemd_unsupported.go
2025-09-01 12:33:04 +02:00

16 lines
296 B
Go

//go:build !linux
package systemd
import "errors"
func RunsOnSystemd() bool {
return false
}
func MovePauseProcessToScope(pausePidPath string) {}
func RunUnderSystemdScope(pid int, slice string, unitName string) error {
return errors.New("RunUnderSystemdScope not supported on this OS")
}