From 14dcd3452b5033dea83cf12f117cf9fff7f9beb7 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 11 Oct 2024 23:35:51 -0500 Subject: add a helper to the debian package Signed-off-by: Jeff Carr --- Makefile.help | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile.help (limited to 'Makefile.help') diff --git a/Makefile.help b/Makefile.help new file mode 100644 index 0000000..8fc9831 --- /dev/null +++ b/Makefile.help @@ -0,0 +1,18 @@ +all: + @echo "make log # watch the virtigo daemon log" + @echo "make status # show the systemd status of virtigod" + @echo "make restart # restart virtigod" + @echo "make enable # enable virtigod on boot" + +log: + @journalctl -f -xeu virtigod.service + +status: + systemctl status virtigod.service + +enable: + systemctl enable virtigod.service + +restart: + systemctl stop virtigod.service + systemctl start virtigod.service -- cgit v1.2.3