Just use the standard states
Signed-off-by: Patrick Uiterwijk <patrick@puiterwijk.org>
This commit is contained in:
parent
adcbf72f03
commit
bb1d3e8579
1 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
- name: install postgresql packages
|
||||
package: pkg={{ item }} state=installed
|
||||
package: pkg={{ item }} state=present
|
||||
with_items:
|
||||
- python-psycopg2
|
||||
- postgresql-server
|
||||
|
@ -8,20 +8,20 @@
|
|||
- pg-semver
|
||||
|
||||
- name: install ssl packages for https
|
||||
package: pkg={{ item }} state=installed
|
||||
package: pkg={{ item }} state=present
|
||||
with_items:
|
||||
- openssl
|
||||
- mod_ssl
|
||||
|
||||
- name: memcached rhel
|
||||
package: pkg={{ item }} state=installed
|
||||
package: pkg={{ item }} state=present
|
||||
with_items:
|
||||
- memcached
|
||||
- python-memcached
|
||||
when: ansible_distribution == "RedHat" and faf_web_cache_type == "memcached"
|
||||
|
||||
- name: memcached fedora
|
||||
package: pkg={{ item }} state=installed
|
||||
package: pkg={{ item }} state=present
|
||||
with_items:
|
||||
- libmemcached
|
||||
- memcached
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue