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


           

            
                                                                 
 

           
                                                 




                                                  



                            
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