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"