diff options
| author | Jeff Carr <[email protected]> | 2025-03-10 03:12:09 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-03-10 07:59:25 -0500 |
| commit | fba2d24625d844b7f6115a6cb86f7fc6e1f9e3d5 (patch) | |
| tree | f1e787166b7a9f9d54c9551b9bf3db6d89fc1e46 /Makefile.help | |
| parent | dfbb8090acaba51ab29368202e5c97fd18856558 (diff) | |
start making it work in the real world
Diffstat (limited to 'Makefile.help')
| -rw-r--r-- | Makefile.help | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Makefile.help b/Makefile.help index c64a2dc..aec5c44 100644 --- a/Makefile.help +++ b/Makefile.help @@ -1,11 +1,11 @@ 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" + @echo "make status # show the systemd status of gus" + @echo "make restart # restart gus" + @echo "make enable # enable gus on boot" log: - journalctl -f -xeu zood.service + journalctl -f -xeu gus.service curl-toggle-PING-output: curl "http://localhost:2521/flag?flag-PING" @@ -14,16 +14,16 @@ curl-kill: curl http://localhost:2521/kill status: - dpkg -s zood - systemctl status zood.service + dpkg -s gus + systemctl status gus.service enable: - systemctl enable zood.service + systemctl enable gus.service stop: - systemctl stop zood.service + systemctl stop gus.service restart: - systemctl stop zood.service - systemctl start zood.service + systemctl stop gus.service + systemctl start gus.service make log |
