aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/Makefile
blob: 2d5f626d5fc8fee12bd62595a9a01b12f28cd969 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                  
 
            
                              
 
                                                                   
 


           



                                                             

           





                                                  



                            
include prelude.mk

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