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

Change module apt with multiple packages to remove deprecated syntax

parent 6ad3f1b3
No related branches found
No related tags found
No related merge requests found
......@@ -12,27 +12,28 @@
- name: install prerequisites
become: yes
apt:
name: "{{ item}}"
name: "{{ packages }}"
state: present
with_items:
- libgdbm-dev
- libncurses5-dev
- openssh-server
- checkinstall
- libxslt-dev
- libicu-dev
- logrotate
- python-docutils
- pkg-config
- cmake
- libkrb5-dev
- nodejs
- git-core
- postfix
- postgresql
- postgresql-client
- libpq-dev
- nginx
vars:
packages:
- libgdbm-dev
- libncurses5-dev
- openssh-server
- checkinstall
- libxslt-dev
- libicu-dev
- logrotate
- python-docutils
- pkg-config
- cmake
- libkrb5-dev
- nodejs
- git-core
- postfix
- postgresql
- postgresql-client
- libpq-dev
- nginx
- name: create git user
become: yes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment