make: Add some convenience targets

This commit is contained in:
2020-10-05 22:00:36 +02:00
parent 84b58f9453
commit 20f5001b3c

View File

@@ -17,6 +17,17 @@ dryrun: $(ansible)
update: $(ansible)
$(ansible_run) --tags update_system
.PHONY: reboot
reboot:
sudo reboot
.PHONY: poweroff
poweroff:
sudo poweroff
.PHONY: weekend
weekend: | update poweroff
.PHONY: packages
packages: $(ansible)
$(ansible_run) --tags packages