nixos/oci-containers: ignore nonexistent container when stopping
Fixes #292551
This commit is contained in:
parent
b5f6e3881a
commit
81f21e3936
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ let
|
|||
|
||||
preStop = if cfg.backend == "podman"
|
||||
then "podman stop --ignore --cidfile=/run/podman-${escapedName}.ctr-id"
|
||||
else "${cfg.backend} stop ${name}";
|
||||
else "${cfg.backend} stop ${name} || true";
|
||||
|
||||
postStop = if cfg.backend == "podman"
|
||||
then "podman rm -f --ignore --cidfile=/run/podman-${escapedName}.ctr-id"
|
||||
|
|
Loading…
Reference in a new issue