spiegel_podman/libpod/healthcheck_unsupported.go
Miloslav Trmač d06c4569f0 Make most of libpod, and everything that relies on it, non-darwin
Require (linux || freebsd), because the code already does that, in practice.
This just means macOS users of IDEs aren't hit with thousands of compilation
errors (and then the IDE can open an Linux-specific file and then process it
under the Linux assumption, which works much better).

This commit contains the parts that differ somehow.

Signed-off-by: Miloslav Trmač <mitr@redhat.com>
2026-02-27 22:18:53 +01:00

23 lines
511 B
Go

//go:build !remote && freebsd
package libpod
import (
"context"
)
// createTimer systemd timers for healthchecks of a container
func (c *Container) createTimer(_ string, _ bool) error {
return nil
}
// startTimer starts a systemd timer for the healthchecks
func (c *Container) startTimer(_ bool) error {
return nil
}
// removeTransientFiles removes the systemd timer and unit files
// for the container
func (c *Container) removeTransientFiles(_ context.Context, _ bool, _ string) error {
return nil
}