summaryrefslogtreecommitdiff
path: root/Makefile.help
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.help')
-rw-r--r--Makefile.help20
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