diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-05-01 16:20:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-01 16:20:41 +0200 |
commit | ad68036a88e35dc3c7a19962b8e21867b459f8f1 (patch) | |
tree | b3854bdbf0971e58b85bdd039ea447ef6390d933 /libpod/healthcheck_unsupported.go | |
parent | eea77b5ae3e7fb8a60d438a79d3a4b30d35bb67c (diff) | |
parent | 0b6bb6a3d3c3c15b9c6629a6949a616a30b0478a (diff) | |
download | podman-ad68036a88e35dc3c7a19962b8e21867b459f8f1.tar.gz podman-ad68036a88e35dc3c7a19962b8e21867b459f8f1.tar.bz2 podman-ad68036a88e35dc3c7a19962b8e21867b459f8f1.zip |
Merge pull request #3031 from baude/remotewindows
enable podman-remote on windows
Diffstat (limited to 'libpod/healthcheck_unsupported.go')
-rw-r--r-- | libpod/healthcheck_unsupported.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libpod/healthcheck_unsupported.go b/libpod/healthcheck_unsupported.go new file mode 100644 index 000000000..d01d1ccd4 --- /dev/null +++ b/libpod/healthcheck_unsupported.go @@ -0,0 +1,19 @@ +// +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 +} |