aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/Makefile
blob: 91f2d578a68c5d7679aea240589220ebf24a3ad2 (plain) (tree)
1
2
3
4
5
6
7
8
                  
 

                 
            
 
                                                    
 


           



                                                             

           





                                                  



                            
include prelude.mk

.SECONDEXPANSION:

LIMIT ?= all

args := --inventory inventory.ini --limit '$(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