aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2017-07-11 11:09:52 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2017-07-11 11:10:46 -0500
commit7e0f76e0adc545c74a8332a6ef0811d2aa62cb81 (patch)
tree547f26d37f702e596e7601bb16d605df55bbd139
parent9812ce5b8dc22fe36cc7bf75cf6e62db204ece3d (diff)
fix sysvinit compatibility for poweroff wrapper
-rw-r--r--scripts/poweroff.in22
1 files changed, 21 insertions, 1 deletions
diff --git a/scripts/poweroff.in b/scripts/poweroff.in
index 91736605..5632f679 100644
--- a/scripts/poweroff.in
+++ b/scripts/poweroff.in
@@ -1,3 +1,23 @@
#!@SHELL@
-exec @SBINDIR@/openrc-shutdown --poweroff "$@"
+option_arg=
+poweroff_arg=
+while getopts :nwdfiph opt; do
+ case "$opt" in
+ n) ;;
+ w) poweroff_arg=--write-only ;;
+ d) option_arg=--no-write ;;
+ f) ;;
+ i) ;;
+ [?]) printf "%s\n" "${0##*/}: invalid command line option" >&2
+ exit 1
+ ;;
+ esac
+done
+shift $((OPTIND-1))
+
+if [ -z "${poweroff_arg}" ]; then
+ poweroff_arg=--poweroff
+fi
+
+exec @SBINDIR@/openrc-shutdown ${option_arg} ${poweroff_arg} "$@"