From 61445600d3e2507ed4a9ad64373dbaa64d28b9cc Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Mon, 13 Apr 2020 09:40:15 +0200 Subject: [PATCH] Taking note of brain dump --- functions | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/functions b/functions index 95a1bab..3d8d19b 100755 --- a/functions +++ b/functions @@ -87,9 +87,16 @@ dokku-ansible-deploy-post-extract() { dokku-ansible-deploy-pre-deploy() { # shellcheck disable=SC2034 declare desc="run the pre-deploy hook to setup an app" + + declare APP="$1" + + # steps are as follows... all from a python script + # if deploy.d/config.yml exists, then yaml load that sucka up + # run the ansible-playbook command with all the options and vars passed in } dokku-ansible-deploy-post-deploy() { # shellcheck disable=SC2034 declare desc="run the post-deploy hook to finish an app setup" + dokku_col_log_info1_quiet "TODO: Implement post-deploy..." }