This repository has been archived on 2026-05-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
visio_nrd/roles/jitsi-enable-UIandCamTricks/tasks/main.yml
T

31 lines
837 B
YAML

---
- name: Conf Jitsi - UI en fr
lineinfile:
path: /etc/jitsi/meet/{{ inventory_hostname }}-config.js
insertafter: "[^?]// defaultLanguage: 'en'"
line: " defaultLanguage: 'fr',"
- name: Conf Jitsi - webcam en qualité medium par defaut
blockinfile:
path: /etc/jitsi/meet/{{ inventory_hostname }}-config.js
marker: "// {mark} ANSIBLE MANAGED BLOCK"
insertafter: "[^?]// Video"
block: |
resolution: 360,
constraints: {
video: {
aspectRatio: 16 / 9,
height: {
ideal: 360,
max: 360,
min: 240
}
}
},
- name: Conf Jitsi - Désactive l'effet floutage d'arrière plan
replace:
path: /usr/share/jitsi-meet/interface_config.js
regexp: "'videobackgroundblur',"
replace: ""