faf-local: update package command to not use items
Signed-off-by: Ryan Lerch <rlerch@redhat.com>
This commit is contained in:
parent
7ef3be1d94
commit
6647ce2082
1 changed files with 12 additions and 8 deletions
|
@ -1,28 +1,32 @@
|
|||
---
|
||||
- name: install postgresql packages
|
||||
package: name={{ item }} state=present
|
||||
with_items:
|
||||
package:
|
||||
state: present
|
||||
name:
|
||||
- python-psycopg2
|
||||
- postgresql-server
|
||||
- postgresql
|
||||
- pg-semver
|
||||
|
||||
- name: install ssl packages for https
|
||||
package: name={{ item }} state=present
|
||||
with_items:
|
||||
package:
|
||||
state: present
|
||||
name:
|
||||
- openssl
|
||||
- mod_ssl
|
||||
|
||||
- name: memcached rhel
|
||||
package: name={{ item }} state=present
|
||||
with_items:
|
||||
package:
|
||||
state: present
|
||||
name:
|
||||
- memcached
|
||||
- python-memcached
|
||||
when: ansible_distribution == "RedHat" and faf_web_cache_type == "memcached"
|
||||
|
||||
- name: memcached fedora
|
||||
package: name={{ item }} state=present
|
||||
with_items:
|
||||
package:
|
||||
state: present
|
||||
name:
|
||||
- libmemcached
|
||||
- memcached
|
||||
- zlib
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue