---
- block:
    - name: Remove the old dm_pool_manager files
      file: path={{ smartgears_instance_path }}/webapps/{{ dm_pool_manager_name }} state=absent
      when: dm_pool_manager_upgrade

    # NOTE: Install as the smartgears user so we do not mess with the permissions
    - name: Get the  dm_pool_manager
      maven_artifact: artifact_id={{ dm_pool_manager_name }} version={{ dm_pool_manager_version | default(omit) }} group_id={{ dm_pool_manager_group_id }} extension={{ dm_pool_manager_extension | default('war') }} repository_url={{ smartgears_global_base_url }} dest={{ smartgears_user_home }}/{{ dm_pool_manager_file }}
  
    - name: Create the dm_pool_manager working directory
      file: path={{ smartgears_instance_path }}/webapps/{{ dm_pool_manager_name }} state=directory owner={{ smartgears_user }} group={{ smartgears_user }}
  
    - name: Unarchive the dm_pool_manager war
      unarchive: copy=no src={{ smartgears_user_home }}/{{ dm_pool_manager_file }} dest={{ smartgears_instance_path }}/webapps/{{ dm_pool_manager_name }} creates={{ smartgears_instance_path }}/webapps/{{ dm_pool_manager_name }}/WEB-INF/lib

    - name: Install the dm-pool-manager  web.xml template
      template: src=web.xml.j2 dest={{ smartgears_instance_path }}/webapps/dataminer-pool-manager/WEB-INF/web.xml mode=0440
 
    - name: Ensures conf dir exists
      file: path={{  item.user_home }}/dataminer-pool-manager/dpmConfig state=directory recurse=true
      with_items: '{{ tomcat_m_instances }}'

    - name: Install the additional service default file
      template: src=service.properties.j2 dest={{ item.user_home }}/dataminer-pool-manager/dpmConfig/service.properties mode=0444
      with_items: '{{ tomcat_m_instances }}' 
      notify: Restart smartgears

    - name: Install the packages required to dm-pool-manager-service
      become_user: root 
      apt: pkg={{ item }} state=present update_cache=yes cache_valid_time=1800
      with_items: '{{ dm_pool_manager_pkgs }}'


  become: True
  become_user: '{{ d4science_user }}'
  when: dm_pool_manager_install 
  tags: [ 'smartgears', 'dm_pool_manager', 'tomcat' ]