diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2021-08-23 17:49:47 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2021-08-24 10:50:16 +0200 |
commit | 70801b3d714b067d64744697433c5841926dad4d (patch) | |
tree | 7c32b2fb385ddc6a7296edd6609f9526d8df20c3 /pkg/systemd/generate/common.go | |
parent | eb9d731c68266cd0953b0669f2bc6340aa8df288 (diff) | |
download | podman-70801b3d714b067d64744697433c5841926dad4d.tar.gz podman-70801b3d714b067d64744697433c5841926dad4d.tar.bz2 podman-70801b3d714b067d64744697433c5841926dad4d.zip |
generate systemd: custom stop signal
Commit 9ac5267598c3 changed the type of the generated systemd units from
forking to notify. Parts of these changes was also removing the need to
pass any information via the file system (e.g., PIDFILE, container ID).
That in turn implies that systemd takes care of stopping the container.
By default, systemd first sends a SIGTERM and after a certain timeout,
it'll send a SIGKILL. That's pretty much what Podman is doing, unless
the container was created with a custom stop signal which is the case
when the --stop-signal flag was used or systemd is mounted.
Account for that by using systemd's KillSignal option which allows for
changing SIGTERM to another signal. Also make sure that we're using the
correct timeout for units generated with --new.
Fixes: #11304
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/systemd/generate/common.go')
-rw-r--r-- | pkg/systemd/generate/common.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/systemd/generate/common.go b/pkg/systemd/generate/common.go index 45e12014a..f2092c0ae 100644 --- a/pkg/systemd/generate/common.go +++ b/pkg/systemd/generate/common.go @@ -8,9 +8,9 @@ import ( "github.com/pkg/errors" ) -// minTimeoutStopSec is the minimal stop timeout for generated systemd units. -// Once exceeded, processes of the services are killed and the cgroup(s) are -// cleaned up. +// minTimeoutStopSec is the minimal stop timeout for generated systemd units +// without --new. Once exceeded, processes of the services are killed and the +// cgroup(s) are cleaned up. const minTimeoutStopSec = 60 // validateRestartPolicy checks that the user-provided policy is valid. |