dnsservice/ansible/Makefile

11 lines
167 B
Makefile
Raw Normal View History

2024-08-02 04:27:30 +00:00
.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"