Implemented the correct setup of the bbb administrator

This commit is contained in:
2025-08-06 15:51:08 +02:00
parent f88e57ca52
commit 7a09f223af
15 changed files with 83 additions and 68 deletions

View File

@@ -1,5 +1,4 @@
enable_greenlight: "true"
setup: false
database:
name: "multiple_databases"
username: "postgres2"
@@ -7,12 +6,12 @@ api_suffix: "/bigbluebutton/"
features:
matomo: true
css: true
port-ui-desktop: false # Videos can't open in frame due to iframe restrictions
port-ui-desktop: false # Videos can't open in frame due to iframe restrictions
# @todo fix this
ldap: false
oidc: true
central_database: false
logout: true
logout: true
domains:
canonical:
- "meet.{{ primary_domain }}"

View File

@@ -0,0 +1,16 @@
- block:
- name: "Create default admin"
command:
cmd: docker compose exec greenlight \
bundle exec rake admin:create['{{ users.administrator.username | upper }}','{{ users.administrator.email }}','{{ users.administrator.password }}']
chdir: "{{ docker_compose.directories.instance }}"
register: admin_creation_result
# Treat exit codes 0 (created) and 2 (already exists) as success
failed_when: admin_creation_result.rc not in [0,2]
rescue:
- name: "Make existing user administrator"
command:
cmd: >
docker compose exec greenlight
bundle exec rake user:set_admin_role['{{ users.administrator.email }}']
chdir: "{{ docker_compose.directories.instance }}"

View File

@@ -34,7 +34,7 @@
state: link
- name: "Setup docker-compose.yml file"
include_tasks: "docker-compose.yml"
include_tasks: "01_docker-compose.yml"
- name: Ensure all containers in instance are running
include_tasks: "{{ playbook_dir }}/roles/docker-compose/tasks/04_ensure_up.yml"
@@ -60,10 +60,7 @@
delay: 5
changed_when: false
- name: create admin
command:
cmd: docker compose exec greenlight bundle exec rake admin:create
chdir: "{{ docker_compose.directories.instance }}"
when: bbb_setup
ignore_errors: true
register: admin_creation_result
- name: "Setup administrator"
include_tasks: "02_administrator.yml"

View File

@@ -0,0 +1,3 @@
users:
administrator:
email: "administrator@{{ primary_domain }}"

View File

@@ -12,7 +12,4 @@ http_port: "{{ ports.localhost.http[application_i
docker_compose_skipp_file_creation: true # Handled in this role
docker_repository_address: "https://github.com/bigbluebutton/docker.git"
docker_pull_git_repository: true
docker_compose_flush_handlers: false
# Setup
bbb_setup: "{{ applications | get_app_conf(application_id, 'setup') }}"
docker_compose_flush_handlers: false