2015-05-28 11:32:57 +02:00
|
|
|
---
|
|
|
|
- name: Do not load the postgresql jdbc driver on tomcat if not needed
|
|
|
|
file: dest={{ tomcat_catalina_home_dir }}/lib/{{ item }} state=absent
|
|
|
|
with_items:
|
|
|
|
- postgresql-jdbc4.jar
|
|
|
|
when: not tomcat_install_pg_jdbc
|
2016-03-02 16:44:43 +01:00
|
|
|
notify: tomcat restart
|
|
|
|
tags: tomcat
|
2015-05-28 11:32:57 +02:00
|
|
|
|