From: John Crispin Date: Mon, 2 Jun 2014 12:43:00 +0000 (+0000) Subject: base-files: add simple shutdown script X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=36d0a5e3fb39eb43b64760febf668c8968bc9f38;p=openwrt%2Fstaging%2Frobimarko.git base-files: add simple shutdown script Since svn rev [38557] we support power buttons, for example the ACPI power button on x86 machines. Add a simple shutdown script to /etc/rc.button, to gracefully shutdown the machine after the power button is pressed. Tested on x86 and x86_64 in a kvm virtual machine. Signed-off-by: Stefan Hellermann SVN-Revision: 40909 --- diff --git a/package/base-files/files/etc/rc.button/power b/package/base-files/files/etc/rc.button/power new file mode 100644 index 0000000000..0cb74b9f29 --- /dev/null +++ b/package/base-files/files/etc/rc.button/power @@ -0,0 +1,5 @@ +#!/bin/sh + +[ "${ACTION}" = "released" ] || exit 0 + +exec /sbin/poweroff