diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-03-29 06:27:41 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-03-29 06:27:41 +0000 |
commit | d2e88cf2399110e878618103aefd00da3c1e90fc (patch) | |
tree | 6b3021567d8216d2590dd2b4c87dcbfcf0d5c95a /debian/local/shutdown | |
parent | Releasing version 20230327. (diff) | |
download | kinet-metapackages-d2e88cf2399110e878618103aefd00da3c1e90fc.tar.xz kinet-metapackages-d2e88cf2399110e878618103aefd00da3c1e90fc.zip |
Adding debian version 20230327-1.HEADdebian/20230327-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/local/shutdown')
-rwxr-xr-x | debian/local/shutdown | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/local/shutdown b/debian/local/shutdown new file mode 100755 index 0000000..30e959d --- /dev/null +++ b/debian/local/shutdown @@ -0,0 +1,13 @@ +#!/bin/sh + +echo "${0}: disabled in systemd-nspawn container" + +if [ -e /etc/compute-tools/shutdown.txt ] +then + cat /etc/compute-tools/shutdown.txt +elif [ -e /usr/share/container/shutdown.txt ] +then + cat /usr/share/container/shutdown.txt +fi + +exit 1 |