blob: 92cd5d0a34a451f4ca66e5dcb10ff1886051a8cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//go:build !linux
// +build !linux
package libpod
import (
"context"
"errors"
)
// createTimer systemd timers for healthchecks of a container
func (c *Container) createTimer() error {
return errors.New("not implemented (*Container) createTimer")
}
// startTimer starts a systemd timer for the healthchecks
func (c *Container) startTimer() error {
return errors.New("not implemented (*Container) startTimer")
}
// removeTransientFiles removes the systemd timer and unit files
// for the container
func (c *Container) removeTransientFiles(ctx context.Context) error {
return errors.New("not implemented (*Container) removeTransientFiles")
}
|