summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Prabhu <sprabhu@redhat.com>2020-05-07 12:41:23 +0100
committerMichael Adam <obnox@samba.org>2020-05-07 17:00:58 +0200
commit2f6eee78c11ff51838794bd55c3c866784f86fb0 (patch)
tree30c6a92d4fe0839dc6c5054d8fe4dcc7a1c80214
parent7f52cd0288e1909ca311e902635ace7ad99eb7f2 (diff)
downloadsamba-integration-2f6eee78c11ff51838794bd55c3c866784f86fb0.tar.gz
samba-integration-2f6eee78c11ff51838794bd55c3c866784f86fb0.tar.xz
samba-integration-2f6eee78c11ff51838794bd55c3c866784f86fb0.zip
Add new build targets to ansible/Makefile
Add targets to build a) clients b) the entire the cluster and the clients Signed-off-by: Sachin Prabhu <sprabhu@redhat.com>
-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