From 39272350c3cdef8b7fd76f38ea3434dec878343e Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Mon, 13 Apr 2020 13:57:12 +0200 Subject: [PATCH] Add TODO and import config first --- plays/post_delete.yml | 6 ++++++ plays/post_deploy.yml | 6 +++--- plays/pre_deploy.yml | 6 +++--- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/plays/post_delete.yml b/plays/post_delete.yml index ed97d53..625e1c8 100644 --- a/plays/post_delete.yml +++ b/plays/post_delete.yml @@ -1 +1,7 @@ --- +- hosts: all + gather_facts: false + tasks: + - name: TODO + debug: + msg: "TODO: implement post-delete" diff --git a/plays/post_deploy.yml b/plays/post_deploy.yml index 098dd47..95298da 100644 --- a/plays/post_deploy.yml +++ b/plays/post_deploy.yml @@ -2,12 +2,12 @@ - hosts: all gather_facts: false tasks: - - name: Include debug tasks - include: ./lib/debug.yml - - name: Include config tasks include: ./lib/config.yml + - name: Include debug tasks + include: ./lib/debug.yml + - name: Include vars tasks include: ./lib/vars.yml diff --git a/plays/pre_deploy.yml b/plays/pre_deploy.yml index 5f1acb7..82abce3 100644 --- a/plays/pre_deploy.yml +++ b/plays/pre_deploy.yml @@ -2,12 +2,12 @@ - hosts: all gather_facts: false tasks: - - name: Include debug tasks - include: ./lib/debug.yml - - name: Include config tasks include: ./lib/config.yml + - name: Include debug tasks + include: ./lib/debug.yml + - name: Include vars tasks include: ./lib/vars.yml