293:6635f14613ba
Anton Shestakov <av6@dwimlabs.net>, Wed, 01 Nov 2017 00:50:57 +0800
Makefile: use file targets more, results in incremental building Less work to do when only some files get changed, but more work when building from scratch. But, multiple compilers can run in parallel.

previous change 211:4b03f725cb69

contrib/provision/roles/turnserver/tasks/main.yml

Permissions: -rw-r--r--

Other formats: Feeds:
---
- name: Install packages
apt:
pkg: '{{ item }}'
state: present
with_items:
- resiprocate-turn-server
tags: [packages]
- name: Allow STUN
ufw:
rule: allow
port: 3478
tags: [ufw]
...