Skip to content
Snippets Groups Projects
Commit de594eb9 authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Fixed RTMP password value in lives configuration json | refs #32957

parent 1e224413
No related branches found
No related tags found
No related merge requests found
......@@ -126,8 +126,11 @@
- name: set RTMP password in lives configuration
when: server_wowza_live_pwd | d(false)
vars:
rtmp_pwd_line:
RTMP_PWD: "{{ server_wowza_live_pwd }}"
set_fact:
lives_config: "{{ lives_config | default([]) | combine({ 'RTMP_PWD': '{{ server_wowza_live_pwd }}' }) }}"
lives_config: "{{ lives_config | default([]) | combine(rtmp_pwd_line) }}"
- name: write lives configuration
when: server_wowza_live_pwd | d(false)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment