summaryrefslogtreecommitdiffstats
path: root/main/consolekit/0001-busybox-reboot-and-poweroff-support.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2011-04-04 19:54:05 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2011-04-05 06:24:42 +0000
commitda893fac83b4b4ca362dad2dd6da74022ebc6cfc (patch)
tree2b60aa96f04027f8825ae47d7123ef07824f699b /main/consolekit/0001-busybox-reboot-and-poweroff-support.patch
parent2fc711e1efa9914b74f363423659f468e2d66205 (diff)
downloadaports-da893fac83b4b4ca362dad2dd6da74022ebc6cfc.tar.bz2
aports-da893fac83b4b4ca362dad2dd6da74022ebc6cfc.tar.xz
main/consolekit: support for busybox reboot/poweroff
Diffstat (limited to 'main/consolekit/0001-busybox-reboot-and-poweroff-support.patch')
-rw-r--r--main/consolekit/0001-busybox-reboot-and-poweroff-support.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/main/consolekit/0001-busybox-reboot-and-poweroff-support.patch b/main/consolekit/0001-busybox-reboot-and-poweroff-support.patch
new file mode 100644
index 000000000..7fa0e3575
--- /dev/null
+++ b/main/consolekit/0001-busybox-reboot-and-poweroff-support.patch
@@ -0,0 +1,41 @@
+From 5e557dd212657f7e75a0c4bd70d11ca06ccb3f84 Mon Sep 17 00:00:00 2001
+From: Natanael Copa <ncopa@alpinelinux.org>
+Date: Mon, 4 Apr 2011 18:46:25 +0000
+Subject: [PATCH] busybox reboot and poweroff support
+
+---
+ tools/linux/ck-system-restart | 3 +++
+ tools/linux/ck-system-stop | 3 +++
+ 2 files changed, 6 insertions(+), 0 deletions(-)
+
+diff --git a/tools/linux/ck-system-restart b/tools/linux/ck-system-restart
+index 8e0664e..5cabb3d 100755
+--- a/tools/linux/ck-system-restart
++++ b/tools/linux/ck-system-restart
+@@ -7,6 +7,9 @@ if [ -x "/sbin/shutdown" ] ; then
+ elif [ -x "/usr/sbin/shutdown" ] ; then
+ /usr/sbin/shutdown -r now
+ exit $?
++elif [ -x "/sbin/reboot" ]; then
++ /sbin/reboot
++ exit $?
+ else
+ exit 1
+ fi
+diff --git a/tools/linux/ck-system-stop b/tools/linux/ck-system-stop
+index e26bca3..a0be3ac 100755
+--- a/tools/linux/ck-system-stop
++++ b/tools/linux/ck-system-stop
+@@ -7,6 +7,9 @@ if [ -x "/sbin/shutdown" ] ; then
+ elif [ -x "/usr/sbin/shutdown" ] ; then
+ /usr/sbin/shutdown -h now
+ exit $?
++elif [ -x "/sbin/poweroff" ] ; then
++ /sbin/poweroff
++ exit $?
+ else
+ exit 1
+ fi
+--
+1.7.4.2
+