321:b68b9cdc34da
Anton Shestakov <av6@dwimlabs.net>, Sat, 14 Jul 2018 19:40:18 +0800
index: try and use a much newer webrtc-adapter 6.2.1

previous change 300:91c9ab6b4ce7

contrib/provision/roles/tram-im/tasks/appinstall.yml

Permissions: -rw-r--r--

Other formats: Feeds:
---
- name: Make sure project directory exists
file:
path: '{{ dir }}'
state: directory
- name: Pull Tram-IM {{ revision }}
hg:
repo: '{{ repo }}'
dest: '{{ dir }}'
revision: '{{ revision }}'
when: ansible_virtualization_type != "virtualbox"
- name: Make sure vendor directory exists
file:
path: '{{ dir }}/vendor'
state: directory
- name: Clone Strophe.js
git:
repo: https://github.com/strophe/strophejs.git
dest: '{{ dir }}/vendor/strophejs'
version: v1.2.15
- name: Clone Strophe.js plugins
git:
repo: https://github.com/strophe/strophejs-plugins.git
dest: '{{ dir }}/vendor/strophejs-plugins'
version: 711826e81225300df5766378fc6a69d3cf8e9909
- name: Download WebRTC adapter
get_url:
url: https://webrtc.github.io/adapter/adapter-6.2.1.js
dest: '{{ dir }}/vendor/webrtc-adapter-6.2.1.js'
...