tweaks...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2024-04-07 01:10:17 +03:00
parent 019b4657ff
commit cb400844ab

View File

@ -14,8 +14,8 @@ install: $(TIMER) $(UNIT)
systemctl daemon-reload
systemctl enable ${UNIT}
systemctl enable ${TIMER}
systemctl start ${TIMER}
systemctl start ${UNIT}
systemctl start ${TIMER}
.PHONY:disable
@ -25,6 +25,7 @@ disable: $(TIMER) $(UNIT)
systemctl disable ${TIMER}
systemctl disable ${UNIT}
.PHONY:uninstall
uninstall: disable $(TIMER) $(UNIT)
rm -f \
@ -32,6 +33,7 @@ uninstall: disable $(TIMER) $(UNIT)
$(SERVICE_DIR)/$(UNIT)
systemctl daemon-reload
.PHONY:reinstall
reinstall: uninstall install