From 58535c1cccfa7798ce36ed184a346ffd553b6751 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sat, 21 Mar 2020 00:08:58 +0100 Subject: [PATCH] Don't always force it --- README.md | 1 - functions | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 0b03bdf..95fd28f 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,6 @@ Notes: * Everything is copied into `$DOKKU_LIB_ROOT/data/ansible/$APP` on the `post-extract` hook. * Dokku will make sure that your Ansible plays are run on the right hook against the Dokku server localhost. -* The `ansible-galaxy` install command is run with `--force` to ensure a clean slate on each hook execution. ## Example diff --git a/functions b/functions index fe19f36..d44e918 100755 --- a/functions +++ b/functions @@ -24,7 +24,7 @@ function run_playbook() { if [[ -f "$requirements" ]]; then dokku_col_log_info1_quiet "$requirements file found" - ansible-galaxy install --force --role-file "$requirements" + ansible-galaxy install --role-file "$requirements" fi dokku_col_log_info1_quiet "Copying library modules into place"