--- # Download and unpack the SDP tarball into the configured volume. # Shared by the install and update (new_sdp) paths. - name: "Download sdp.tgz" ansible.builtin.get_url: url: "https://swarm.workshop.perforce.com/downloads/guest/russell_jackson/sdp.tgz" dest: "/{{ perforce_sdp_volume }}/" mode: '0700' - name: "Unpack sdp.tgz" ansible.builtin.unarchive: remote_src: true src: "/{{ perforce_sdp_volume }}/{{ perforce_sdp_file }}" dest: "/{{ perforce_sdp_volume }}" owner: "{{ perforce_user }}" group: "{{ perforce_group }}" mode: '0755'