summary refs log tree commit diff
path: root/catsit.sh
blob: bc18a46dd558fc8debd39f4247ece56b4e89fb93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh
set -eu

die() {
	echo "${0}:" "$@" >&2
	exit 1
}

: ${CATSITD_PIPE:=/var/run/catsitd.pipe}

while getopts 'c:' opt; do
	case "${opt}" in
		(c) CATSITD_PIPE=$OPTARG;;
		(?) exit 1;;
	esac
done
shift $((OPTIND - 1))

if ! [ -p "${CATSITD_PIPE}" ]; then
	die "${CATSITD_PIPE} is not a named pipe"
fi

[ $# -lt 1 ] && die 'action required'
[ $# -lt 2 ] && die 'service name required'

action=$(echo "${1}" | tr 'A-Z' 'a-z')
for valid in start stop restart status $(kill -l | tr 'A-Z' 'a-z'); do
	[ "${action}" = "${valid}" ] && break
done
if [ "${action}" != "${valid}" ]; then
	die "${action} is not a valid action or signal"
fi

echo "$@" > "${CATSITD_PIPE}"
c650cb2d63741e49980a27e0f009c9042b&follow=1'>Elaborate hi man pageJune McEnroe 2019-02-08Use set for parent in hiJune McEnroe 2019-02-08Switch back to semantic keyword grouping in hiJune McEnroe 2019-02-08Match only the basename in hiJune McEnroe 2019-02-07Add mdoc syntax to hiJune McEnroe 2019-02-07Support multi-line C macros in hiJune McEnroe 2019-02-07Detect .mk files as makeJune McEnroe 2019-02-07Add make syntax to hiJune McEnroe 2019-02-07Add IRC output to hiJune McEnroe 2019-02-07Improve C syntax accuracy and add Format classJune McEnroe 2019-02-07Factor out hi checkJune McEnroe Fix subexpression bounds check and compile pattends. 2019-02-07Add Escape class to hiJune McEnroe 2019-02-07Add Todo class and parent syntax constraintJune McEnroe