mirror of https://github.com/containers/podman.git
Merge pull request #16715 from dfr/freebsd-build
libpod: Track healthcheck API changes in healthcheck_unsupported.go
This commit is contained in:
commit
92ced4282f
|
|
@ -9,17 +9,17 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// createTimer systemd timers for healthchecks of a container
|
// createTimer systemd timers for healthchecks of a container
|
||||||
func (c *Container) createTimer() error {
|
func (c *Container) createTimer(interval string, isStartup bool) error {
|
||||||
return errors.New("not implemented (*Container) createTimer")
|
return errors.New("not implemented (*Container) createTimer")
|
||||||
}
|
}
|
||||||
|
|
||||||
// startTimer starts a systemd timer for the healthchecks
|
// startTimer starts a systemd timer for the healthchecks
|
||||||
func (c *Container) startTimer() error {
|
func (c *Container) startTimer(isStartup bool) error {
|
||||||
return errors.New("not implemented (*Container) startTimer")
|
return errors.New("not implemented (*Container) startTimer")
|
||||||
}
|
}
|
||||||
|
|
||||||
// removeTransientFiles removes the systemd timer and unit files
|
// removeTransientFiles removes the systemd timer and unit files
|
||||||
// for the container
|
// for the container
|
||||||
func (c *Container) removeTransientFiles(ctx context.Context) error {
|
func (c *Container) removeTransientFiles(ctx context.Context, isStartup bool) error {
|
||||||
return errors.New("not implemented (*Container) removeTransientFiles")
|
return errors.New("not implemented (*Container) removeTransientFiles")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue