github.com/containers/podman/v4@v4.9.4/libpod/healthcheck_nosystemd_linux.go (about)

     1  //go:build !remote && !systemd
     2  // +build !remote,!systemd
     3  
     4  package libpod
     5  
     6  import (
     7  	"context"
     8  )
     9  
    10  // createTimer systemd timers for healthchecks of a container
    11  func (c *Container) createTimer(interval string, isStartup bool) error {
    12  	return nil
    13  }
    14  
    15  // startTimer starts a systemd timer for the healthchecks
    16  func (c *Container) startTimer(isStartup bool) error {
    17  	return nil
    18  }
    19  
    20  // removeTransientFiles removes the systemd timer and unit files
    21  // for the container
    22  func (c *Container) removeTransientFiles(ctx context.Context, isStartup bool) error {
    23  	return nil
    24  }