Pass JVB_AUTH_PASSWORD environment variable to make JVB startup happy
We define this password in the `sip-communicator.properties` configuration file, so this is not needed for actually running JVB. However, it does a (useless) safety check during container startup, and we need to make that check happy.
This commit is contained in:
parent
dcce276b86
commit
14786071af
@ -34,6 +34,13 @@
|
|||||||
- logging.properties
|
- logging.properties
|
||||||
when: matrix_jitsi_enabled|bool
|
when: matrix_jitsi_enabled|bool
|
||||||
|
|
||||||
|
- name: Ensure jitsi-jvb environment variables file created
|
||||||
|
template:
|
||||||
|
src: "{{ role_path }}/templates/jvb/env.j2"
|
||||||
|
dest: "{{ matrix_jitsi_jvb_base_path }}/env"
|
||||||
|
mode: 0640
|
||||||
|
when: matrix_jitsi_enabled|bool
|
||||||
|
|
||||||
- name: Ensure matrix-jitsi-jvb.service installed
|
- name: Ensure matrix-jitsi-jvb.service installed
|
||||||
template:
|
template:
|
||||||
src: "{{ role_path }}/templates/jvb/matrix-jitsi-jvb.service.j2"
|
src: "{{ role_path }}/templates/jvb/matrix-jitsi-jvb.service.j2"
|
||||||
|
1
roles/matrix-jitsi/templates/jvb/env.j2
Normal file
1
roles/matrix-jitsi/templates/jvb/env.j2
Normal file
@ -0,0 +1 @@
|
|||||||
|
JVB_AUTH_PASSWORD={{ matrix_jitsi_jvb_auth_password }}
|
@ -14,6 +14,7 @@ ExecStartPre=-/usr/bin/docker rm matrix-jitsi-jvb
|
|||||||
ExecStart=/usr/bin/docker run --rm --name matrix-jitsi-jvb \
|
ExecStart=/usr/bin/docker run --rm --name matrix-jitsi-jvb \
|
||||||
--log-driver=none \
|
--log-driver=none \
|
||||||
--network={{ matrix_docker_network }} \
|
--network={{ matrix_docker_network }} \
|
||||||
|
--env-file={{ matrix_jitsi_jvb_base_path }}/env \
|
||||||
{% if matrix_jitsi_jvb_container_rtp_udp_host_bind_port %}
|
{% if matrix_jitsi_jvb_container_rtp_udp_host_bind_port %}
|
||||||
-p {{ matrix_jitsi_jvb_container_rtp_udp_host_bind_port }}:{{ matrix_jitsi_jvb_rtp_udp_port }}/udp \
|
-p {{ matrix_jitsi_jvb_container_rtp_udp_host_bind_port }}:{{ matrix_jitsi_jvb_rtp_udp_port }}/udp \
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user