Switch around debug statements

This commit is contained in:
Luke Murphy 2020-04-13 15:06:18 +02:00
parent 9e3e548c26
commit 1734ee3634
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
3 changed files with 9 additions and 11 deletions

View File

@ -1,6 +1,4 @@
---
- hosts: all
gather_facts: false
tasks:
- name: Include debug tasks
include: ./lib/debug.yml
tasks: []

View File

@ -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

View File

@ -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