diff --git a/roles/docker-bigbluebutton/tasks/main.yml b/roles/docker-bigbluebutton/tasks/main.yml index 17c529ae..a8d53516 100644 --- a/roles/docker-bigbluebutton/tasks/main.yml +++ b/roles/docker-bigbluebutton/tasks/main.yml @@ -45,17 +45,17 @@ - name: wait for database pause: seconds: "{{pause_duration}}" - when: appplications.bigbluebutton.setup | bool + when: applications.bigbluebutton.setup | bool - name: create admin command: cmd: docker compose exec greenlight bundle exec rake admin:create chdir: "{{docker_compose.directories.instance}}" - when: appplications.bigbluebutton.setup | bool + when: applications.bigbluebutton.setup | bool ignore_errors: true register: admin_creation_result - name: print admin user data debug: msg: "{{ admin_creation_result.stdout }}" - when: appplications.bigbluebutton.setup | bool \ No newline at end of file + when: applications.bigbluebutton.setup | bool \ No newline at end of file diff --git a/roles/docker-listmonk/tasks/main.yml b/roles/docker-listmonk/tasks/main.yml index 33835f23..e9a942b4 100644 --- a/roles/docker-listmonk/tasks/main.yml +++ b/roles/docker-listmonk/tasks/main.yml @@ -27,10 +27,10 @@ - name: flush docker service meta: flush_handlers - when: appplications.listmonk.setup |bool + when: applications.listmonk.setup |bool - name: setup routine for listmonk command: cmd: docker compose run -T --rm application sh -c "yes | ./listmonk --install" chdir: "{{docker_compose.directories.instance}}" - when: appplications.listmonk.setup |bool \ No newline at end of file + when: applications.listmonk.setup |bool \ No newline at end of file diff --git a/roles/docker-mailu/tasks/main.yml b/roles/docker-mailu/tasks/main.yml index c957d851..36c6a14e 100644 --- a/roles/docker-mailu/tasks/main.yml +++ b/roles/docker-mailu/tasks/main.yml @@ -18,11 +18,11 @@ - name: flush docker service meta: flush_handlers - when: appplications.mailu.setup |bool + when: applications.mailu.setup |bool - name: execute database migration command: cmd: "docker compose -p mailu exec admin flask mailu admin admin {{primary_domain}} {{mailu_initial_root_password}}" chdir: "{{docker_compose.directories.instance}}" ignore_errors: true - when: appplications.mailu.setup |bool \ No newline at end of file + when: applications.mailu.setup |bool \ No newline at end of file diff --git a/roles/docker-mastodon/tasks/main.yml b/roles/docker-mastodon/tasks/main.yml index 9ba229b6..7923142f 100644 --- a/roles/docker-mastodon/tasks/main.yml +++ b/roles/docker-mastodon/tasks/main.yml @@ -14,10 +14,10 @@ - name: flush docker service meta: flush_handlers - when: appplications.mastodon.setup |bool + when: applications.mastodon.setup |bool - name: setup routine for mastodon command: cmd: "docker-compose run --rm web bundle exec rails db:migrate" chdir: "{{docker_compose.directories.instance}}" - when: appplications.mastodon.setup |bool \ No newline at end of file + when: applications.mastodon.setup |bool \ No newline at end of file diff --git a/roles/docker-matrix-compose/tasks/main.yml b/roles/docker-matrix-compose/tasks/main.yml index eab8774b..cb14abc7 100644 --- a/roles/docker-matrix-compose/tasks/main.yml +++ b/roles/docker-matrix-compose/tasks/main.yml @@ -137,11 +137,11 @@ cmd: docker compose exec -it synapse register_new_matrix_user -u {{applications.matrix.administrator_username}} -p {{matrix_admin_password}} -a -c /data/homeserver.yaml http://localhost:8008 chdir: "{{ docker_compose.directories.instance }}" ignore_errors: true - when: appplications.matrix.setup | bool + when: applications.matrix.setup | bool - name: create chatgpt bot command: cmd: docker compose exec -it synapse register_new_matrix_user -u chatgptbot -p {{matrix_chatgpt_bridge_user_password}} -a -c /data/homeserver.yaml http://localhost:8008 chdir: "{{ docker_compose.directories.instance }}" ignore_errors: true - when: appplications.matrix.setup | bool \ No newline at end of file + when: applications.matrix.setup | bool \ No newline at end of file