From 391d12db48754861b5cecac92ee3321597ee02c1 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Wed, 6 Apr 2022 10:51:55 -0500 Subject: migrate fully to meson build system - drop old build system - move shared include and source files to common directory - drop "rc-" prefix from shared include and source files - move executable-specific code to individual directories under src - adjust top-level .gitignore file for new build system This closes #489. --- src/shutdown/shutdown.in | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/shutdown/shutdown.in (limited to 'src/shutdown/shutdown.in') diff --git a/src/shutdown/shutdown.in b/src/shutdown/shutdown.in new file mode 100644 index 00000000..23e5e31d --- /dev/null +++ b/src/shutdown/shutdown.in @@ -0,0 +1,46 @@ +#!/bin/sh + +do_halt=false +while getopts :akrhPHfFnct: opt; do + case "$opt" in + a) ;; + k) ;; + r) + shutdown_arg=--reboot + ;; + h) + do_halt=true + shutdown_arg=--poweroff + ;; + P) + if ! ${do_halt}; then + printf "%s\n" "The -P flag requires the -h flag" >&2 + exit 1 + fi + shutdown_arg=--poweroff + ;; + H) + if ! ${do_halt}; then + printf "%s\n" "The -H flag requires the -h flag" >&2 + exit 1 + fi + shutdown_arg=--halt + ;; + f) ;; + F) ;; + n) ;; + c) ;; + t) ;; + [?]) printf "%s\n" "${0##*/}: invalid command line option" >&2 + exit 1 + ;; + esac +done +shift $((OPTIND-1)) + +if [ -z "${shutdown_arg}" ]; then + shutdown_arg=--single +fi + +printf "%s %s\n" "@SBINDIR@/openrc-shutdown ${shutdown_arg}" "$@" +exec @SBINDIR@/openrc-shutdown ${shutdown_arg} "$@" -- cgit v1.2.3