Explorar el Código

Update makefile with tasks for specific services

Colin Powell hace 2 años
padre
commit
e5d94ca914
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  1. 6 0
      ansible/Makefile

+ 6 - 0
ansible/Makefile

@@ -1,7 +1,13 @@
 test:
 	ansible-playbook playbook.yml -i hosts --limit=test
+recipes:
+	ansible-playbook playbook.yml -i hosts --limit=recipes
+paper:
+	ansible-playbook playbook.yml -i hosts --limit=paper
 install:
 	cp envrc.example .envrc
 	direnv allow
 	pip install ansible
 	ansible-galaxy collection install community.postgresql
+
+