summaryrefslogtreecommitdiffstats
path: root/roles/abrt/faf-local/tasks/install.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/abrt/faf-local/tasks/install.yml')
-rw-r--r--roles/abrt/faf-local/tasks/install.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/roles/abrt/faf-local/tasks/install.yml b/roles/abrt/faf-local/tasks/install.yml
new file mode 100644
index 000000000..6e6d6d2f1
--- /dev/null
+++ b/roles/abrt/faf-local/tasks/install.yml
@@ -0,0 +1,30 @@
+---
+- name: install postgresql packages
+ yum: pkg={{ item }} state=installed
+ with_items:
+ - python-psycopg2
+ - postgresql-server
+ - postgresql
+ - pg-semver
+
+- name: install ssl packages for https
+ yum: pkg={{ item }} state=installed
+ with_items:
+ - openssl
+ - mod_ssl
+
+- name: memcached rhel
+ yum: pkg={{ item }} state=installed
+ with_items:
+ - memcached
+ - python-memcached
+ when: ansible_distribution == "RedHat" and faf_web_cache_type == "memcached"
+
+- name: memcached fedora
+ yum: pkg={{ item }} state=installed
+ with_items:
+ - libmemcached
+ - memcached
+ - zlib
+ - python-pylibmc
+ when: ansible_distribution == "Fedora" and faf_web_cache_type == "memcached"