dnsservice/ansible/Makefile

13 lines
210 B
Makefile

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