blob: 4c6f138e142b21ec33a70b2d8ed4c974ff29b249 (
plain) (
tree)
|
|
include prelude.mk
.SECONDEXPANSION:
LIMIT ?= all
$(eval $(call noexpand,LIMIT))
args := --inventory inventory.ini --limit '$(call escape,$(LIMIT))'
.PHONY: all
all: run
.PHONY: deps
deps:
ansible-galaxy collection install -r requirements.yml
.PHONY: run
run:
ansible-playbook $(args) maintenance.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
|