aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-31 23:44:54 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-31 23:44:54 +0200
commit727ab17a644d52105746e18c301cf733b1181507 (patch)
tree71113c6efae3074899de965aee5489cb76362f8e /Makefile
parentdowngrade Ansible (diff)
downloadmaintenance-727ab17a644d52105746e18c301cf733b1181507.tar.gz
maintenance-727ab17a644d52105746e18c301cf733b1181507.zip
move Ansible files to src/
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
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: