Browse Source

Update makefile with tasks for specific services

Colin Powell 2 years ago
parent
commit
e5d94ca914
1 changed files with 6 additions and 0 deletions
  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
+
+