diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2022-06-05 06:24:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2022-06-05 07:39:45 +0000 |
commit | 549e741c38b7d8e5f665b287511a513928d10552 (patch) | |
tree | d0a5f2428d73fc637ada5c7c0d5be9afe609bcce /libexec/container/stop | |
parent | Renaming force option in container stop command to kill in order to properly ... (diff) | |
download | compute-tools-549e741c38b7d8e5f665b287511a513928d10552.tar.xz compute-tools-549e741c38b7d8e5f665b287511a513928d10552.zip |
Tracking container state in run files in /var/lib/compute-tools.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rwxr-xr-x | libexec/container/stop | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libexec/container/stop b/libexec/container/stop index 2d81523..793b323 100755 --- a/libexec/container/stop +++ b/libexec/container/stop @@ -326,6 +326,9 @@ case "${KILL}" in ;; esac +mkdir -p "/var/lib/${SOFTWARE}/state" +echo "stop" > "/var/lib/${SOFTWARE}/state/${NAME}.run" + case "${VERBOSE}" in true) echo " done." |