17 lines
389 B
Bash
17 lines
389 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# bt-service - restart/start/stop the ButtonTask systemd units.
|
|
# Invoked through sudo by the web configurator (tightly scoped).
|
|
set -euo pipefail
|
|
|
|
ACTION="${1:-}"
|
|
case "$ACTION" in
|
|
start|stop|restart)
|
|
systemctl "$ACTION" buttontask-web buttontask
|
|
;;
|
|
*)
|
|
echo "usage: bt-service {start|stop|restart}" >&2
|
|
exit 2
|
|
;;
|
|
esac
|