pedalboard-scripts/toggle-systemd.sh
2022-03-30 15:33:54 +02:00

15 lines
394 B
Bash
Executable file

#!/usr/bin/env bash
# author: Daniel Sommer <daniel.sommer@velvettear.de>
# license: MIT
set -e
dir="$(dirname $(realpath "$0"))"
. "$dir/config.env"
url="$(""$dir"/url.sh" "/systemd" "$1")"
printf "> sending POST request to \'$url\'...${FONT_BOLD}"
[ "$(curl -X POST -s -f -w "\n%{http_code}" "$url" -d "state=toggle" | tail -n1)" -ne 200 ] && printf " error!\n" || printf " done!\n"