From 727ab17a644d52105746e18c301cf733b1181507 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 31 Jul 2023 23:44:54 +0200 Subject: move Ansible files to src/ --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2d5f626..9ecf55f 100644 --- a/Makefile +++ b/Makefile @@ -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: -- cgit v1.2.3