dnsservice/ansible/Makefile

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"