Files
Button/webconfig/scripts/bt-service
T
2026-06-17 04:55:15 +03:00

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