1
0
Fork 0
progress-linux-metapackages/debian/local/shutdown
Daniel Baumann c4dc3172b4
Adding debian version 20221002-23.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 10:40:42 +02:00

13 lines
247 B
Bash
Executable file

#!/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