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
|
- name: install postgresql packages
|
||||||
package: pkg={{ item }} state=installed
|
package: pkg={{ item }} state=present
|
||||||
with_items:
|
with_items:
|
||||||
- python-psycopg2
|
- python-psycopg2
|
||||||
- postgresql-server
|
- postgresql-server
|
||||||
|
@ -8,20 +8,20 @@
|
||||||
- pg-semver
|
- pg-semver
|
||||||
|
|
||||||
- name: install ssl packages for https
|
- name: install ssl packages for https
|
||||||
package: pkg={{ item }} state=installed
|
package: pkg={{ item }} state=present
|
||||||
with_items:
|
with_items:
|
||||||
- openssl
|
- openssl
|
||||||
- mod_ssl
|
- mod_ssl
|
||||||
|
|
||||||
- name: memcached rhel
|
- name: memcached rhel
|
||||||
package: pkg={{ item }} state=installed
|
package: pkg={{ item }} state=present
|
||||||
with_items:
|
with_items:
|
||||||
- memcached
|
- memcached
|
||||||
- python-memcached
|
- python-memcached
|
||||||
when: ansible_distribution == "RedHat" and faf_web_cache_type == "memcached"
|
when: ansible_distribution == "RedHat" and faf_web_cache_type == "memcached"
|
||||||
|
|
||||||
- name: memcached fedora
|
- name: memcached fedora
|
||||||
package: pkg={{ item }} state=installed
|
package: pkg={{ item }} state=present
|
||||||
with_items:
|
with_items:
|
||||||
- libmemcached
|
- libmemcached
|
||||||
- memcached
|
- memcached
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue