From 1734ee3634acef20edb0efd0888f018df328b875 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Mon, 13 Apr 2020 15:06:18 +0200 Subject: [PATCH] Switch around debug statements --- plays/post_delete.yml | 4 +--- plays/post_deploy.yml | 6 +++--- plays/pre_deploy.yml | 10 +++++----- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/plays/post_delete.yml b/plays/post_delete.yml index ebd9042..3b5d4c2 100644 --- a/plays/post_delete.yml +++ b/plays/post_delete.yml @@ -1,6 +1,4 @@ --- - hosts: all gather_facts: false - tasks: - - name: Include debug tasks - include: ./lib/debug.yml + tasks: [] diff --git a/plays/post_deploy.yml b/plays/post_deploy.yml index 3ba6c38..3cf3ee1 100644 --- a/plays/post_deploy.yml +++ b/plays/post_deploy.yml @@ -2,14 +2,14 @@ - hosts: all gather_facts: false tasks: + - name: Include vars tasks + include: ./lib/vars.yml + # Note(decentral1se): internal debugging. Please `debug: true` in the # /var/lib/dokku/data/deploy.d/vars.yml file to activate a debug vars dump - name: Include debug tasks include: ./lib/debug.yml - - name: Include vars tasks - include: ./lib/vars.yml - - name: Include http tasks include: ./lib/http.yml diff --git a/plays/pre_deploy.yml b/plays/pre_deploy.yml index 46e0546..e9e9add 100644 --- a/plays/pre_deploy.yml +++ b/plays/pre_deploy.yml @@ -2,17 +2,17 @@ - hosts: all gather_facts: false tasks: - # Note(decentral1se): internal debugging. Please `debug: true` in the - # /var/lib/dokku/data/deploy.d/vars.yml file to activate a debug vars dump - - name: Include debug tasks - include: ./lib/debug.yml - - name: Include prepare tasks include: ./lib/prepare.yml - name: Include vars tasks include: ./lib/vars.yml + # Note(decentral1se): internal debugging. Please `debug: true` in the + # /var/lib/dokku/data/deploy.d/vars.yml file to activate a debug vars dump + - name: Include debug tasks + include: ./lib/debug.yml + - name: Include domain tasks include: ./lib/domain.yml