dnsservice/ansible/Makefile

13 lines
210 B
Makefile
Raw Permalink 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"
2024-08-05 20:04:05 +00:00
website:
$(ANSIBLE_ROOT) --tags "website"
2024-08-02 04:27:30 +00:00
dns:
$(ANSIBLE_ROOT) --tags "dns"