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