Skip to content
This repository has been archived by the owner on Jul 31, 2019. It is now read-only.

Commit

Permalink
Merge pull request #31 from freedomofpress/add-sip-communicator-config
Browse files Browse the repository at this point in the history
Manages SIP Communicator config lines
  • Loading branch information
conorsch committed Feb 21, 2017
2 parents ad2b96f + 4f311c5 commit 73fcc66
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tasks/jitsi_meet.yml
Expand Up @@ -15,3 +15,19 @@
line: ".level={{ jitsi_meet_videobridge_loglevel }}"
state: present
notify: restart jitsi-videobridge

- name: Create directory for SIP communicator settings.
file:
state: directory
# Hard-coding homedir path and username because they're configured via
# the jitsi-meet postinst scripts, so these values must match.
path: /usr/share/jitsi-videobridge/.sip-communicator
owner: jvb
notify: restart jitsi-videobridge

- name: Write SIP communicator settings.
copy:
dest: /usr/share/jitsi-videobridge/.sip-communicator/sip-communicator.properties
content: "org.jitsi.impl.neomedia.transform.srtp.SRTPCryptoContext.checkReplay=false"
owner: jvb
notify: restart jitsi-videobridge

0 comments on commit 73fcc66

Please sign in to comment.