From 1bff7ad4fe90c12dc3b1937da757536409806aaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 2 Oct 2025 09:39:16 +0200 Subject: [PATCH] Clean up Makefile --- Makefile | 25 +++---------------------- 1 file changed, 3 insertions(+), 22 deletions(-) diff --git a/Makefile b/Makefile index bd6c297..51d3fd2 100644 --- a/Makefile +++ b/Makefile @@ -1,31 +1,12 @@ ansible_run = ansible-playbook --inventory localhost, --diff ./playbook.yml ${ANSIBLE_EXTRA_ARGS} -.PHONY: all -all: - $(ansible_run) - .PHONY: config config: $(ansible_run) -.PHONY: reboot -reboot: - sudo reboot - -.PHONY: poweroff -poweroff: - sudo poweroff - -.PHONY: weekend -weekend: | update poweroff - -.PHONY: packages -packages: - $(ansible_run) --tags packages - -.PHONY: dotfiles -dotfiles: - $(ansible_run) --tags dotfiles +.PHONY: maintenance +maintenance: + ./maintenance.sh .PHONY: test test: