5427783fdf
I do not know of a need to have the default shell be a build-time configurable setting. All *nix systems I am aware of have /bin/sh as a default posix compatible shell. If some systems running OpenRC do not make that assumption about /bin/sh, I will consider bringing this back, so feel free to open an issue.
26 lines
447 B
Bash
26 lines
447 B
Bash
#!/bin/sh
|
|
|
|
option_arg=
|
|
poweroff_arg=
|
|
while getopts :nwdfhik opt; do
|
|
case "$opt" in
|
|
n) ;;
|
|
w) poweroff_arg=--write-only ;;
|
|
d) option_arg=--no-write ;;
|
|
f) ;;
|
|
h) ;;
|
|
i) ;;
|
|
k) poweroff_arg=--kexec ;;
|
|
[?]) printf "%s\n" "${0##*/}: invalid command line option" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
shift $((OPTIND-1))
|
|
|
|
if [ -z "${poweroff_arg}" ]; then
|
|
poweroff_arg=--reboot
|
|
fi
|
|
|
|
exec @SBINDIR@/openrc-shutdown ${option_arg} ${poweroff_arg} "$@"
|