Skip to content

Commit

Permalink
Update deprecated syntax
Browse files Browse the repository at this point in the history
 Invoking "apt" only once while using a loop via squash_actions is
 deprecated. Use list of items as name value instead.
  • Loading branch information
jdavcs committed Nov 8, 2018
1 parent 1043f1c commit ddda1d5
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,12 +222,8 @@ and start two [job handler mules][deployment-options].
become: yes
- name: Install Dependencies
apt:
name: "{{ item }}"
name: ['git', 'python-psycopg2', 'python-virtualenv']
become: yes
with_items:
- git
- python-psycopg2
- python-virtualenv
# Precreating the mutable config directory may be necessary (it's not in our example since we set the user's home
# directory to galaxy_mutable_config_dir's parent).
#- name: Create mutable configuration file directory
Expand Down

0 comments on commit ddda1d5

Please sign in to comment.