diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3,18 +3,18 @@ include prelude.mk LIMIT ?= all $(eval $(call noexpand,LIMIT)) -args := --inventory inventory.ini --limit '$(call escape,$(LIMIT))' +args := --inventory src/inventory.ini --limit '$(call escape,$(LIMIT))' .PHONY: all all: run .PHONY: deps deps: - ansible-galaxy collection install -r requirements.yml + ansible-galaxy collection install -r src/requirements.yml .PHONY: run run: - ansible-playbook $(args) maintenance.yml + ansible-playbook $(args) src/playbook.yml .PHONY: reboot reboot: |