diff options
| author | Jeff Carr <[email protected]> | 2025-03-09 00:53:36 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-03-09 00:53:36 -0600 |
| commit | b7003bbc767a66e2285c8d1c3b5a068a63af0efe (patch) | |
| tree | 76a26f90c0e7e78fbfc2b440edbec76c03827aa7 /Makefile.help | |
day #1v0.0.0
Diffstat (limited to 'Makefile.help')
| -rw-r--r-- | Makefile.help | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Makefile.help b/Makefile.help new file mode 100644 index 0000000..c64a2dc --- /dev/null +++ b/Makefile.help @@ -0,0 +1,29 @@ +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 + +curl-toggle-PING-output: + curl "http://localhost:2521/flag?flag-PING" + +curl-kill: + curl http://localhost:2521/kill + +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 |
