diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-31 23:44:54 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-31 23:44:54 +0200 |
commit | 727ab17a644d52105746e18c301cf733b1181507 (patch) | |
tree | 71113c6efae3074899de965aee5489cb76362f8e /Makefile | |
parent | downgrade Ansible (diff) | |
download | maintenance-727ab17a644d52105746e18c301cf733b1181507.tar.gz maintenance-727ab17a644d52105746e18c301cf733b1181507.zip |
move Ansible files to src/
Diffstat (limited to '')
-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: |