summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vagrant/ansible/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/vagrant/ansible/Makefile b/vagrant/ansible/Makefile
index a8c80f3..6eaa741 100644
--- a/vagrant/ansible/Makefile
+++ b/vagrant/ansible/Makefile
@@ -7,4 +7,9 @@ setup.test:
setup.cluster:
@ansible-playbook -i $(INVENTORY) ./setup-cluster.yml
-.PHONY: setup.cluster
+setup.clients:
+ @ansible-playbook -i $(INVENTORY) ./setup-clients.yml
+
+setup.site: setup.cluster setup.clients
+
+.PHONY: setup.cluster setup.clients setup.site