aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..9a33226
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,27 @@
+# Ansible Makefile
+#
+# ~ rgoncalves.se
+#
+# Why:
+# I don't want to always run `ansible-playbook playbooks/playbook-name.yml`,
+# I am tired of it.
+#
+# Some inspiration that might made its way here -or will-:
+# - https://github.com/paulRbr/ansible-makefile/blob/master/Makefile
+# - https://dreisbach.us/articles/simple-ansible-makefile/
+
+PLAYBOOK_DIR = playbooks
+PLAYBOOKS != find $(PLAYBOOK_DIR) -iname "*.yml" | \
+ sed 's/^$(PLAYBOOK_DIR)\///g' | \
+ sed 's/.yml//g'
+.PHONY: $(PLAYBOOKS)
+
+_debug:
+ @echo "available tasks:"
+ @echo $(PLAYBOOKS) | \
+ tr " " "\n" | \
+ sed 's/^/- /g' | \
+ sort
+
+$(PLAYBOOKS):
+ ansible-playbook $(PLAYBOOK_DIR)/$@.yml
remember that computers suck.