forked from ISTI-ansible-roles/ansible-roles
dataminer: install nscd when requested.
This commit is contained in:
parent
3d7c3b237d
commit
8efc0aca14
|
@ -123,6 +123,19 @@
|
|||
shell: /usr/local/bin/wps-config-fixer
|
||||
# notify: Restart smartgears
|
||||
|
||||
- name: Install the nscd service to work around dns timeouts
|
||||
become_user: root
|
||||
apt: pkg=nscd state=present update_cache=yes cache_valid_time=1800
|
||||
when: dataminer_install_nscd is defined and dataminer_install_nscd
|
||||
tags: [ 'tomcat', 'dataminer', 'wps', 'dm_nscd' ]
|
||||
|
||||
- name: Ensure thad the nscd service is enabled and running
|
||||
become_user: root
|
||||
service: name=nscd state=restarted enabled=yes
|
||||
when: dataminer_install_nscd is defined and dataminer_install_nscd
|
||||
tags: [ 'tomcat', 'dataminer', 'wps', 'dm_nscd' ]
|
||||
|
||||
|
||||
become: True
|
||||
become_user: '{{ smartgears_user }}'
|
||||
when: dataminer_app_install
|
||||
|
|
Loading…
Reference in New Issue