소스 검색

Update makefile with tasks for specific services

Colin Powell 2 년 전
부모
커밋
e5d94ca914
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  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
+
+