aboutsummaryrefslogtreecommitdiff
path: root/scripts/shutdown.in
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2022-04-06 10:51:55 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2022-04-06 10:51:55 -0500
commit391d12db48754861b5cecac92ee3321597ee02c1 (patch)
treeb42fad5a31ca342de7b7ecf1fb78784194c1400c /scripts/shutdown.in
parent0efc1b133e4182bd53cde78153bd8b5cc2e99448 (diff)
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.
Diffstat (limited to 'scripts/shutdown.in')
-rw-r--r--scripts/shutdown.in46
1 files changed, 0 insertions, 46 deletions
diff --git a/scripts/shutdown.in b/scripts/shutdown.in
deleted file mode 100644
index 23e5e31d..00000000
--- a/scripts/shutdown.in
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/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} "$@"