24 lines
630 B
Bash
Executable File
24 lines
630 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
|
|
function run_playbook() {
|
|
local play_path="$1"
|
|
local requirements="$2"
|
|
|
|
if [[ ! -f "$play_path" ]]; then
|
|
dokku_col_log_info1_quiet "$play_path not found or executable bit not set"
|
|
exit 0
|
|
fi
|
|
|
|
if [[ -f "$requirements" ]]; then
|
|
dokku_col_log_info1_quiet "$requirements file found"
|
|
ansible-galaxy install -vvv --force --role-file "$requirements"
|
|
fi
|
|
|
|
dokku_col_log_info1_quiet "$play_path file found"
|
|
ansible-playbook --inventory "$(hostname)", --connection local "$play_path"
|
|
}
|