Solved typo bug

This commit is contained in:
Kevin Veen-Birkenbach 2025-02-19 03:46:25 +01:00
parent 2c4ee620c1
commit 74d8dad94c
5 changed files with 11 additions and 11 deletions

View File

@ -45,17 +45,17 @@
- name: wait for database - name: wait for database
pause: pause:
seconds: "{{pause_duration}}" seconds: "{{pause_duration}}"
when: appplications.bigbluebutton.setup | bool when: applications.bigbluebutton.setup | bool
- name: create admin - name: create admin
command: command:
cmd: docker compose exec greenlight bundle exec rake admin:create cmd: docker compose exec greenlight bundle exec rake admin:create
chdir: "{{docker_compose.directories.instance}}" chdir: "{{docker_compose.directories.instance}}"
when: appplications.bigbluebutton.setup | bool when: applications.bigbluebutton.setup | bool
ignore_errors: true ignore_errors: true
register: admin_creation_result register: admin_creation_result
- name: print admin user data - name: print admin user data
debug: debug:
msg: "{{ admin_creation_result.stdout }}" msg: "{{ admin_creation_result.stdout }}"
when: appplications.bigbluebutton.setup | bool when: applications.bigbluebutton.setup | bool

View File

@ -27,10 +27,10 @@
- name: flush docker service - name: flush docker service
meta: flush_handlers meta: flush_handlers
when: appplications.listmonk.setup |bool when: applications.listmonk.setup |bool
- name: setup routine for listmonk - name: setup routine for listmonk
command: command:
cmd: docker compose run -T --rm application sh -c "yes | ./listmonk --install" cmd: docker compose run -T --rm application sh -c "yes | ./listmonk --install"
chdir: "{{docker_compose.directories.instance}}" chdir: "{{docker_compose.directories.instance}}"
when: appplications.listmonk.setup |bool when: applications.listmonk.setup |bool

View File

@ -18,11 +18,11 @@
- name: flush docker service - name: flush docker service
meta: flush_handlers meta: flush_handlers
when: appplications.mailu.setup |bool when: applications.mailu.setup |bool
- name: execute database migration - name: execute database migration
command: command:
cmd: "docker compose -p mailu exec admin flask mailu admin admin {{primary_domain}} {{mailu_initial_root_password}}" cmd: "docker compose -p mailu exec admin flask mailu admin admin {{primary_domain}} {{mailu_initial_root_password}}"
chdir: "{{docker_compose.directories.instance}}" chdir: "{{docker_compose.directories.instance}}"
ignore_errors: true ignore_errors: true
when: appplications.mailu.setup |bool when: applications.mailu.setup |bool

View File

@ -14,10 +14,10 @@
- name: flush docker service - name: flush docker service
meta: flush_handlers meta: flush_handlers
when: appplications.mastodon.setup |bool when: applications.mastodon.setup |bool
- name: setup routine for mastodon - name: setup routine for mastodon
command: command:
cmd: "docker-compose run --rm web bundle exec rails db:migrate" cmd: "docker-compose run --rm web bundle exec rails db:migrate"
chdir: "{{docker_compose.directories.instance}}" chdir: "{{docker_compose.directories.instance}}"
when: appplications.mastodon.setup |bool when: applications.mastodon.setup |bool

View File

@ -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 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 }}" chdir: "{{ docker_compose.directories.instance }}"
ignore_errors: true ignore_errors: true
when: appplications.matrix.setup | bool when: applications.matrix.setup | bool
- name: create chatgpt bot - name: create chatgpt bot
command: 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 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 }}" chdir: "{{ docker_compose.directories.instance }}"
ignore_errors: true ignore_errors: true
when: appplications.matrix.setup | bool when: applications.matrix.setup | bool