dnsservice/ansible/Makefile
2024-08-01 23:27:30 -05:00

11 lines
167 B
Makefile

.PHONY: all dns lb
ANSIBLE_ROOT=ansible-playbook playbook.yml -i inventory
all:
$(ANSIBLE_ROOT)
lb:
$(ANSIBLE_ROOT) --tags "lb"
dns:
$(ANSIBLE_ROOT) --tags "dns"