dnet-eagle: major cleanup. Now solr is installed by the playbook. Removed the local mongodb server.

This commit is contained in:
Andrea Dell'Amico 2016-01-15 18:48:51 +01:00
parent 5f8e611421
commit cb618fa8fd
2 changed files with 4 additions and 1 deletions

View File

@ -2,7 +2,9 @@
- name: Load the apache ssl modules
apache2_module: name={{ item }} state=present
with_items: apache_ssl_modules
when: apache_ssl_modules_enabled
when:
- apache_ssl_modules_enabled
- is_trusty
notify: apache2 reload
tags: [ 'apache', 'apache_mods' ]

View File

@ -7,6 +7,7 @@
- name: Load the required worker module
apache2_module: name={{ item.name }} state={{ item.state }}
with_items: apache_worker_modules
when: is_trusty
notify: apache2 restart
tags: [ 'apache', 'apache_modules', 'apache_workers_modules' ]