aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-x90_reboot7
-rwxr-xr-x91_poweroff7
2 files changed, 14 insertions, 0 deletions
diff --git a/90_reboot b/90_reboot
new file mode 100755
index 0000000..04c0b90
--- /dev/null
+++ b/90_reboot
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+cat << EOF
+menuentry 'Reboot' --class tool {
+ reboot
+}
+EOF
diff --git a/91_poweroff b/91_poweroff
new file mode 100755
index 0000000..4911932
--- /dev/null
+++ b/91_poweroff
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+cat << EOF
+menuentry 'Poweroff' --class tool {
+ halt
+}
+EOF