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:
parent
a5f3819d0a
commit
ea1c8eabd2
2 changed files with 21 additions and 18 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue