blob: 256a4b21fb132581525d3f13b40bb43465bc9ac1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package define
var (
// DefaultInitPath is the default path to the container-init binary
DefaultInitPath = "/usr/libexec/podman/catatonit"
)
// CtrRemoveTimeout is the default number of seconds to wait after stopping a container
// before sending the kill signal
const CtrRemoveTimeout = 10
|