summaryrefslogtreecommitdiff
path: root/Makefile.help
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.help')
-rw-r--r--Makefile.help18
1 files changed, 18 insertions, 0 deletions
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