--- - block: - name: Remove the old social-networking-library-ws files file: path={{ item }} state=absent with_items: - '{{ smartgears_instance_path }}/webapps/{{ social_networking_library_ws_name }}' - '{{ smartgears_instance_path }}/webapps/{{ social_networking_library_ws_name }}.{{ social_networking_library_ws_extension }}' notify: Restart smartgears become: True become_user: '{{ d4science_user }}' when: not social_networking_library_ws_install tags: [ 'social_networking_library_ws' ] - block: - name: Get the social-networking-library-ws war maven_artifact: artifact_id={{ social_networking_library_ws_name }} version={{ social_networking_library_ws_version | default(omit) }} group_id={{ social_networking_library_ws_group_id }} extension={{ social_networking_library_ws_extension | default('war') }} repository_url={{ smartgears_global_base_url }} dest={{ smartgears_downloads_dir }}/{{ social_networking_library_ws_file }} verify_checksum=always register: social_networking_library_ws_download - name: Remove the old social-networking-library-ws files when upgrading file: path={{ item }} state=absent with_items: - '{{ smartgears_instance_path }}/webapps/{{ social_networking_library_ws_name }}' - '{{ smartgears_instance_path }}/webapps/{{ social_networking_library_ws_name }}.{{ social_networking_library_ws_extension }}' when: social_networking_library_ws_download is changed notify: Restart smartgears # - name: Copy the social_networking_library_ws war into the tomcat webapps dir # copy: src={{ smartgears_downloads_dir }}/{{ social_networking_library_ws_file }} dest={{ smartgears_instance_path }}/webapps/{{ social_networking_library_ws_name }}.{{ social_networking_library_ws_extension }} remote_src=yes force=yes # notify: Restart smartgears - name: Create the socialnetworking working directory file: path={{ smartgears_instance_path }}/webapps/{{ social_networking_library_ws_name }} state=directory owner={{ smartgears_user }} group={{ smartgears_user }} - name: Unarchive the social_networking_library_ws war into the tomcat webapps dir unarchive: copy=no src={{ smartgears_downloads_dir }}/{{ social_networking_library_ws_file }} dest={{ smartgears_instance_path }}/webapps/{{ social_networking_library_ws_name }} creates='{{ smartgears_instance_path }}/webapps/{{ social_networking_library_ws_name }}/WEB-INF/lib' register: socialnetworking_updated notify: Restart smartgears - name: Install the socialnetworking web.xml template: src=web.xml.j2 dest={{ smartgears_instance_path }}/webapps/{{ social_networking_library_ws_name }}/WEB-INF/web.xml notify: Restart smartgears tags: [ 'social_networking_library_ws', 'socialnetworking_webxml' ] become: True become_user: '{{ d4science_user }}' when: social_networking_library_ws_install tags: [ 'social_networking_library_ws' ]