File: shutdown

package info (click to toggle)
progress-linux-metapackages 20260205-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 160 kB
  • sloc: makefile: 100; sh: 44
file content (13 lines) | stat: -rwxr-xr-x 247 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
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