mirror of
https://github.com/containers/podman.git
synced 2025-12-01 10:38:05 +08:00
16 lines
296 B
Go
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")
|
|
}
|