blob: 98b45649a9a863dfaeab0ef2655107511fba9f9b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# To be able to properly shutdown bare-metal servers install and
# configure acpid
apt-get -y install acpid
cat <<EOF > /etc/acpi/events/powerbtn
event=button[ /]power
action=/sbin/poweroff
EOF
|