fas_client / fas_server: update package command to not use items

Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
This commit is contained in:
Aurélien Bompard 2019-06-11 16:02:32 +01:00 committed by pingou
parent a5f3819d0a
commit ea1c8eabd2
2 changed files with 21 additions and 18 deletions

View file

@ -9,10 +9,11 @@
# nss_db is needed to store user/group info.
#
- name: install package needed for fas-client
package: state=present name={{ item }}
with_items:
- fas-clients
- cronie
package:
state: present
name:
- fas-clients
- cronie
tags:
- packages
- fas_client

View file

@ -2,25 +2,27 @@
# Tasks to set up fas_server
- name: install needed packages
package: name={{ item }} state=present
with_items:
- fas
- fas-plugin-yubikey
- python-turbojson
- python-tgcaptcha
- httpd
- mod_wsgi
- python-bunch
- python-requests-kerberos
package:
state: present
name:
- fas
- fas-plugin-yubikey
- python-turbojson
- python-tgcaptcha
- httpd
- mod_wsgi
- python-bunch
- python-requests-kerberos
tags:
- packages
- fas
- name: install needed packages
package: name={{ item }} state=present
with_items:
- krb5-workstation
- python-requests-kerberos
package:
state: present
name:
- krb5-workstation
- python-requests-kerberos
tags:
- packages
- fas