Skip to content
Snippets Groups Projects
Commit d226ba3f authored by jurgenhaas's avatar jurgenhaas
Browse files

Change module apt with multiple packages to remove deprecated syntax

parent dfed8d96
No related branches found
No related tags found
No related merge requests found
......@@ -9,13 +9,14 @@
- name: "Install essential packages"
apt:
pkg: '{{ item }}'
pkg: '{{ packages }}'
state: 'present'
update_cache: yes
with_items:
- 'alien'
- 'libaio1'
- 'bc'
vars:
packages:
- 'alien'
- 'libaio1'
- 'bc'
- name: "Check current status"
shell: 'ls /u01/app/oracle/product'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment