From a82a718b921da80ed2dfb9c7d51163448677449b Mon Sep 17 00:00:00 2001 From: josiah Date: Sat, 2 May 2020 17:55:47 -0500 Subject: [PATCH] Add test role to all.yml --- ansible/all.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ansible/all.yml b/ansible/all.yml index af44395..c812441 100644 --- a/ansible/all.yml +++ b/ansible/all.yml @@ -35,3 +35,10 @@ roles: - { name: nextcloud, tags: ['nextcloud'] } +- name: deploy the dev stack + gather_facts: no + hosts: dockerhosts + tasks: + - debug: msg="Deploying awful stack to cloud server" + roles: + - { name: test, tags: ['test'] }