diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-16 20:46:00 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-16 20:46:00 +0300 |
commit | 56ed7fe042f2177342f83d13fa4a00419e813a4e (patch) | |
tree | 43fa05d6e99bb485a4d020da8ca77be48c469816 /Makefile | |
parent | add ansible.cfg (diff) | |
download | maintenance-56ed7fe042f2177342f83d13fa4a00419e813a4e.tar.gz maintenance-56ed7fe042f2177342f83d13fa4a00419e813a4e.zip |
add requirements.yml
Diffstat (limited to '')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -25,6 +25,10 @@ $(eval $(call noexpand,limit)) .PHONY: all all: run +.PHONY: deps +deps: + ansible-galaxy collection install -r requirements.yml + .PHONY: run run: ansible-playbook --inventory inventory.ini --limit '$(call escape,$(limit))' maintenance.yml |