summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2020-03-23 23:39:13 +0100
committerMichael Adam <obnox@samba.org>2020-03-25 22:32:23 +0100
commitc1782e6a14fb64aab13a31fa0c513d6b2a9c5dac (patch)
treebc096766dd05915d49e5ffa441b06a87e0e37da6
parent1f8a7cc7a730f7ea9d26a520f09cc3d3b5eacf9f (diff)
downloadsamba-integration-c1782e6a14fb64aab13a31fa0c513d6b2a9c5dac.tar.gz
samba-integration-c1782e6a14fb64aab13a31fa0c513d6b2a9c5dac.tar.xz
samba-integration-c1782e6a14fb64aab13a31fa0c513d6b2a9c5dac.zip
Introduce vagrant/Makefile with targets local and setup.prep
Signed-off-by: Michael Adam <obnox@samba.org>
-rw-r--r--vagrant/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/vagrant/Makefile b/vagrant/Makefile
new file mode 100644
index 0000000..fc9eebe
--- /dev/null
+++ b/vagrant/Makefile
@@ -0,0 +1,9 @@
+INVENTORY := ./vagrant_ansible_inventory
+
+local:
+ @ansible-playbook --inventory localhost, local.yml
+
+setup.prep: local
+ @ansible-playbook --inventory=$(INVENTORY) setup.prep.yml
+
+.PHONY: local setup.prep