Taking note of brain dump

This commit is contained in:
Luke Murphy 2020-04-13 09:40:15 +02:00
parent ce44d9a261
commit 61445600d3
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 7 additions and 0 deletions

View File

@ -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..."
}