Try to use right paths and lessen verbosity

This commit is contained in:
Luke Murphy 2020-03-20 00:45:06 +01:00
parent 5c6baaac58
commit 97983d7e2e
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 3 additions and 3 deletions

View File

@ -20,15 +20,15 @@ function run_playbook() {
dokku_col_log_info1_quiet "$requirements file found"
ansible-galaxy \
install \
-vvv --force \
--roles-path "./roles" \
--force \
--roles-path "$(pwd)/roles" \
--role-file "$requirements"
fi
dokku_col_log_info1_quiet "$play_path file found"
ansible-playbook \
--inventory "$(hostname)", \
--module-path "./roles/*/library/" \
--module-path "$(pwd)/roles/*/library" \
--connection local \
"$play_path"