blob: 8fc983121fdee8b7395c121fa4a1aabe6f91e98c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|