zood/Makefile.help

30 lines
563 B
Makefile
Raw Permalink Normal View History

2024-11-15 01:22:47 -06:00
all:
@echo "make log # watch the zoo daemon log"
@echo "make status # show the systemd status of zood"
@echo "make restart # restart zood"
@echo "make enable # enable zood on boot"
log:
journalctl -f -xeu zood.service
2024-11-18 20:22:12 -06:00
curl-toggle-PING-output:
curl "http://localhost:2521/flag?flag-PING"
2024-11-15 01:22:47 -06:00
curl-kill:
2024-11-18 20:22:12 -06:00
curl http://localhost:2521/kill
2024-11-15 01:22:47 -06:00
status:
dpkg -s zood
systemctl status zood.service
enable:
systemctl enable zood.service
stop:
systemctl stop zood.service
restart:
systemctl stop zood.service
systemctl start zood.service
make log