diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 9ecf55f..0000000 --- a/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -include prelude.mk - -LIMIT ?= all -$(eval $(call noexpand,LIMIT)) - -args := --inventory src/inventory.ini --limit '$(call escape,$(LIMIT))' - -.PHONY: all -all: run - -.PHONY: deps -deps: - ansible-galaxy collection install -r src/requirements.yml - -.PHONY: run -run: - ansible-playbook $(args) src/playbook.yml - -.PHONY: reboot -reboot: - ansible $(args) --become -m reboot '*' - ansible $(args) -m wait_for_connection '*' - -.PHONY: reboot/cloud -reboot/cloud: LIMIT := cloud -reboot/cloud: run |