From 6c101ed4d2f14d92889dbe7a4649bf13f49b9c81 Mon Sep 17 00:00:00 2001 From: James Brundage <+@noreply.github.com> Date: Mon, 16 Dec 2024 23:48:15 -0800 Subject: [PATCH] feat: GQL Container.stop.ps1 ( Fixes #13 ) --- Container.stop.ps1 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Container.stop.ps1 diff --git a/Container.stop.ps1 b/Container.stop.ps1 new file mode 100644 index 0000000..bb6dfe6 --- /dev/null +++ b/Container.stop.ps1 @@ -0,0 +1,9 @@ +<# +.SYNOPSIS + Stops the container. +.DESCRIPTION + This script is called when the container is about to stop. + + It can be used to perform any necessary cleanup before the container is stopped. +#> +"Container now exiting, thank you for using $env:ModuleName!" | Out-Host