aboutsummaryrefslogtreecommitdiff
path: root/extra/sinit/files/sinit.post.shutdown
diff options
context:
space:
mode:
Diffstat (limited to 'extra/sinit/files/sinit.post.shutdown')
-rw-r--r--extra/sinit/files/sinit.post.shutdown16
1 files changed, 0 insertions, 16 deletions
diff --git a/extra/sinit/files/sinit.post.shutdown b/extra/sinit/files/sinit.post.shutdown
deleted file mode 100644
index 16deba74..00000000
--- a/extra/sinit/files/sinit.post.shutdown
+++ /dev/null
@@ -1,16 +0,0 @@
-# vim:filetype=sh
-
-# We handle the shutdown from here
-
-if [ "$SINIT_SHUTDOWN_HOOKS" = 1 ]; then
- case "$1" in
- reboot)
- out "Requesting system reboot..."
- /usr/bin/ubase-box halt -r
- ;;
- poweroff)
- out "Requesting system poweroff..."
- /usr/bin/ubase-box halt -p
- ;;
- esac
-fi