mirror of
https://github.com/containers/podman.git
synced 2025-06-10 01:31:58 +08:00

build a podman-remote binary for windows that allows users to use the remote client on windows and interact with podman on linux system. Signed-off-by: baude <bbaude@redhat.com>
20 lines
442 B
Go
20 lines
442 B
Go
// +build !linux
|
|
|
|
package libpod
|
|
|
|
// createTimer systemd timers for healthchecks of a container
|
|
func (c *Container) createTimer() error {
|
|
return ErrNotImplemented
|
|
}
|
|
|
|
// startTimer starts a systemd timer for the healthchecks
|
|
func (c *Container) startTimer() error {
|
|
return ErrNotImplemented
|
|
}
|
|
|
|
// removeTimer removes the systemd timer and unit files
|
|
// for the container
|
|
func (c *Container) removeTimer() error {
|
|
return ErrNotImplemented
|
|
}
|