diff --git a/README.md b/README.md index f85feb4..dc8298e 100644 --- a/README.md +++ b/README.md @@ -432,4 +432,5 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **29.08.25:** - Attempt graceful shutdown of Chrome. * **12.06.25:** - Initial release. diff --git a/readme-vars.yml b/readme-vars.yml index 5e880ea..82b3810 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -114,4 +114,5 @@ init_diagram: | "chrome:latest" <- Base Images # changelog changelogs: + - {date: "29.08.25:", desc: "Attempt graceful shutdown of Chrome."} - {date: "12.06.25:", desc: "Initial release."} diff --git a/root/s6-overlay/s6-rc.d/svc-de/down b/root/s6-overlay/s6-rc.d/svc-de/down new file mode 100644 index 0000000..cec7fee --- /dev/null +++ b/root/s6-overlay/s6-rc.d/svc-de/down @@ -0,0 +1 @@ +/etc/s6-overlay/s6-rc.d/svc-de/finish \ No newline at end of file diff --git a/root/s6-overlay/s6-rc.d/svc-de/finish b/root/s6-overlay/s6-rc.d/svc-de/finish new file mode 100755 index 0000000..0d44188 --- /dev/null +++ b/root/s6-overlay/s6-rc.d/svc-de/finish @@ -0,0 +1,4 @@ +#!/usr/bin/with-contenv bash +# shellcheck shell=bash + +pkill chrome \ No newline at end of file