diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-16 16:32:54 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-16 16:32:54 +0000 |
commit | 0c3a6cc734f7c6eef1d3d8ab8329cc39b7d79046 (patch) | |
tree | 7839c3063f26cc21bbbade27c2cd6216a5ca15f1 /debian/local/shutdown | |
parent | Adding upstream version 20211009. (diff) | |
download | bfh-metapackages-0c3a6cc734f7c6eef1d3d8ab8329cc39b7d79046.tar.xz bfh-metapackages-0c3a6cc734f7c6eef1d3d8ab8329cc39b7d79046.zip |
Adding debian version 20211009-21.debian/20211009-21
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 |