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. --- scripts/shutdown.in | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 scripts/shutdown.in (limited to 'scripts/shutdown.in') 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} "$@" -- cgit v1.2.3