forked from infra/ansible
13 lines
212 B
YAML
13 lines
212 B
YAML
---
|
|
|
|
- name: Install coturn
|
|
apt: name={{ item }}
|
|
with_items:
|
|
- coturn
|
|
|
|
- name: Configure coturn
|
|
template: src={{ item }}.j2 dest=/etc/{{ item }}
|
|
with_items:
|
|
- turnserver.conf
|
|
notify: Restart coturn
|