Ver código fonte

Replace installation command shortcut for the "just" program with the most conservative raw ansible-playbook command

This commit replaces installation command shortcut ("recipe") for the "just" program with the raw ansible-playbook command, so that the shortcut will be added to it later. The command is so conservative that failure of the command will mean something is clearly broken.

Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
pull/3842/head
Suguru Hirahara 1 ano atrás
pai
commit
9dd314355e
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: E4F9743DAB4B7B75
51 arquivos alterados com 247 adições e 51 exclusões
  1. +5
    -1
      docs/configuring-playbook-alertmanager-receiver.md
  2. +5
    -1
      docs/configuring-playbook-appservice-double-puppet.md
  3. +1
    -1
      docs/configuring-playbook-bot-baibot.md
  4. +1
    -1
      docs/configuring-playbook-bot-chatgpt.md
  5. +5
    -1
      docs/configuring-playbook-bot-matrix-registration-bot.md
  6. +5
    -1
      docs/configuring-playbook-bot-maubot.md
  7. +5
    -1
      docs/configuring-playbook-bridge-appservice-irc.md
  8. +5
    -1
      docs/configuring-playbook-bridge-beeper-linkedin.md
  9. +5
    -1
      docs/configuring-playbook-bridge-go-skype-bridge.md
  10. +5
    -1
      docs/configuring-playbook-bridge-heisenbridge.md
  11. +5
    -1
      docs/configuring-playbook-bridge-matrix-bridge-sms.md
  12. +5
    -1
      docs/configuring-playbook-bridge-mautrix-facebook.md
  13. +5
    -1
      docs/configuring-playbook-bridge-mautrix-gmessages.md
  14. +5
    -1
      docs/configuring-playbook-bridge-mautrix-googlechat.md
  15. +5
    -1
      docs/configuring-playbook-bridge-mautrix-hangouts.md
  16. +5
    -1
      docs/configuring-playbook-bridge-mautrix-instagram.md
  17. +5
    -1
      docs/configuring-playbook-bridge-mautrix-meta-instagram.md
  18. +5
    -1
      docs/configuring-playbook-bridge-mautrix-meta-messenger.md
  19. +5
    -1
      docs/configuring-playbook-bridge-mautrix-signal.md
  20. +5
    -1
      docs/configuring-playbook-bridge-mautrix-telegram.md
  21. +5
    -1
      docs/configuring-playbook-bridge-mautrix-twitter.md
  22. +5
    -1
      docs/configuring-playbook-bridge-mautrix-whatsapp.md
  23. +5
    -1
      docs/configuring-playbook-bridge-mautrix-wsproxy.md
  24. +5
    -1
      docs/configuring-playbook-bridge-mx-puppet-discord.md
  25. +5
    -1
      docs/configuring-playbook-bridge-mx-puppet-groupme.md
  26. +5
    -1
      docs/configuring-playbook-bridge-mx-puppet-instagram.md
  27. +5
    -1
      docs/configuring-playbook-bridge-mx-puppet-steam.md
  28. +5
    -1
      docs/configuring-playbook-bridge-mx-puppet-twitter.md
  29. +5
    -1
      docs/configuring-playbook-bridge-wechat.md
  30. +5
    -1
      docs/configuring-playbook-cactus-comments.md
  31. +5
    -1
      docs/configuring-playbook-client-cinny.md
  32. +5
    -1
      docs/configuring-playbook-client-element-web.md
  33. +5
    -1
      docs/configuring-playbook-client-hydrogen.md
  34. +5
    -1
      docs/configuring-playbook-client-schildichat-web.md
  35. +5
    -1
      docs/configuring-playbook-dendrite.md
  36. +5
    -1
      docs/configuring-playbook-dynamic-dns.md
  37. +5
    -1
      docs/configuring-playbook-etherpad.md
  38. +5
    -1
      docs/configuring-playbook-ma1sd.md
  39. +5
    -1
      docs/configuring-playbook-matrix-authentication-service.md
  40. +5
    -1
      docs/configuring-playbook-matrix-ldap-registration-proxy.md
  41. +5
    -1
      docs/configuring-playbook-mautrix-bridges.md
  42. +5
    -1
      docs/configuring-playbook-pantalaimon.md
  43. +5
    -1
      docs/configuring-playbook-prometheus-grafana.md
  44. +5
    -1
      docs/configuring-playbook-prometheus-nginxlog.md
  45. +5
    -1
      docs/configuring-playbook-prometheus-postgres.md
  46. +5
    -1
      docs/configuring-playbook-rest-auth.md
  47. +5
    -1
      docs/configuring-playbook-riot-web.md
  48. +5
    -1
      docs/configuring-playbook-shared-secret-auth.md
  49. +5
    -1
      docs/configuring-playbook-sliding-sync-proxy.md
  50. +5
    -1
      docs/configuring-playbook-synapse-usage-exporter.md
  51. +5
    -1
      docs/registering-users.md

+ 5
- 1
docs/configuring-playbook-alertmanager-receiver.md Ver arquivo

@@ -76,7 +76,11 @@ Steps 3 and 4 need to be done for each new room you'd like the bot to deliver al


## Installing ## Installing


Now that you've [prepared the bot account and room](#account-and-room-preparation), [configured the playbook](#adjusting-the-playbook-configuration), and potentially [adjusted your DNS records](#adjusting-dns-records), you can run the [installation](installing.md) command: `just install-all`
Now that you've [prepared the bot account and room](#account-and-room-preparation), [configured the playbook](#adjusting-the-playbook-configuration), and potentially [adjusted your DNS records](#adjusting-dns-records), you can run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


Then, you can proceed to [Usage](#usage). Then, you can proceed to [Usage](#usage).




+ 5
- 1
docs/configuring-playbook-appservice-double-puppet.md Ver arquivo

@@ -16,7 +16,11 @@ matrix_appservice_double_puppet_enabled: true


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 1
- 1
docs/configuring-playbook-bot-baibot.md Ver arquivo

@@ -379,7 +379,7 @@ matrix_bot_baibot_config_initial_global_config_handler_image_generation: null
After configuring the playbook, run the [installation](installing.md) command: After configuring the playbook, run the [installation](installing.md) command:


```sh ```sh
just run-tags install-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
``` ```


**Notes**: **Notes**:


+ 1
- 1
docs/configuring-playbook-bot-chatgpt.md Ver arquivo

@@ -59,7 +59,7 @@ You will need to get tokens for ChatGPT.
After configuring the playbook, run the [installation](installing.md) command: After configuring the playbook, run the [installation](installing.md) command:


```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=install-all,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```






+ 5
- 1
docs/configuring-playbook-bot-matrix-registration-bot.md Ver arquivo

@@ -32,7 +32,11 @@ The bot account will be created automatically.


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bot-maubot.md Ver arquivo

@@ -49,7 +49,11 @@ If you've decided to use the default hostname, you won't need to do any extra DN


## Installing ## Installing


After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command: `just install-all`
After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


**Notes**: **Notes**:




+ 5
- 1
docs/configuring-playbook-bridge-appservice-irc.md Ver arquivo

@@ -62,7 +62,11 @@ matrix_appservice_irc_ircService_servers:


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-beeper-linkedin.md Ver arquivo

@@ -35,7 +35,11 @@ You may wish to look at `roles/custom/matrix-bridge-beeper-linkedin/templates/co


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Set up Double Puppeting by enabling Appservice Double Puppet or Shared Secret Auth ## Set up Double Puppeting by enabling Appservice Double Puppet or Shared Secret Auth




+ 5
- 1
docs/configuring-playbook-bridge-go-skype-bridge.md Ver arquivo

@@ -14,7 +14,11 @@ matrix_go_skype_bridge_enabled: true


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-heisenbridge.md Ver arquivo

@@ -49,7 +49,11 @@ If you've decided to use the default hostname, you won't need to do any extra DN


## Installing ## Installing


After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-matrix-bridge-sms.md Ver arquivo

@@ -33,7 +33,11 @@ matrix_sms_bridge_provider_android_truststore_password: 123


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mautrix-facebook.md Ver arquivo

@@ -55,7 +55,11 @@ You may wish to look at `roles/custom/matrix-bridge-mautrix-facebook/templates/c


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mautrix-gmessages.md Ver arquivo

@@ -20,7 +20,11 @@ matrix_mautrix_gmessages_enabled: true


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mautrix-googlechat.md Ver arquivo

@@ -20,7 +20,11 @@ matrix_mautrix_googlechat_enabled: true


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mautrix-hangouts.md Ver arquivo

@@ -22,7 +22,11 @@ matrix_mautrix_hangouts_enabled: true


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mautrix-instagram.md Ver arquivo

@@ -42,7 +42,11 @@ You may wish to look at `roles/custom/matrix-bridge-mautrix-instagram/templates/


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mautrix-meta-instagram.md Ver arquivo

@@ -68,7 +68,11 @@ You may wish to look at `roles/custom/matrix-bridge-mautrix-meta-instagram/templ


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mautrix-meta-messenger.md Ver arquivo

@@ -82,7 +82,11 @@ You may wish to look at `roles/custom/matrix-bridge-mautrix-meta-messenger/templ


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mautrix-signal.md Ver arquivo

@@ -68,7 +68,11 @@ You may wish to look at `roles/custom/matrix-bridge-mautrix-signal/templates/con


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mautrix-telegram.md Ver arquivo

@@ -22,7 +22,11 @@ matrix_mautrix_telegram_api_hash: YOUR_TELEGRAM_API_HASH


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mautrix-twitter.md Ver arquivo

@@ -22,7 +22,11 @@ matrix_mautrix_twitter_enabled: true


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mautrix-whatsapp.md Ver arquivo

@@ -36,7 +36,11 @@ If you want to activate the relay bot in a room, send `!wa set-relay`. To deacti


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mautrix-wsproxy.md Ver arquivo

@@ -41,7 +41,11 @@ By default, you will need to create a CNAME record for `wsproxy`. See [Configuri


## Installing ## Installing


After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mx-puppet-discord.md Ver arquivo

@@ -18,7 +18,11 @@ matrix_mx_puppet_discord_enabled: true


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mx-puppet-groupme.md Ver arquivo

@@ -14,7 +14,11 @@ matrix_mx_puppet_groupme_enabled: true


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mx-puppet-instagram.md Ver arquivo

@@ -14,7 +14,11 @@ matrix_mx_puppet_instagram_enabled: true


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mx-puppet-steam.md Ver arquivo

@@ -14,7 +14,11 @@ matrix_mx_puppet_steam_enabled: true


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-mx-puppet-twitter.md Ver arquivo

@@ -25,7 +25,11 @@ matrix_mx_puppet_twitter_environment: ''


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-bridge-wechat.md Ver arquivo

@@ -14,7 +14,11 @@ matrix_wechat_enabled: true


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-cactus-comments.md Ver arquivo

@@ -63,7 +63,11 @@ If you've decided to use the default hostname, you won't need to do any extra DN


## Installing ## Installing


After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-client-cinny.md Ver arquivo

@@ -42,4 +42,8 @@ If you've adjusted `matrix_client_cinny_hostname`, you will need to adjust your


## Installing ## Installing


After configuring the playbook and [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook and [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```

+ 5
- 1
docs/configuring-playbook-client-element-web.md Ver arquivo

@@ -71,4 +71,8 @@ If you've decided to reuse the `matrix.` domain, you won't need to do any extra


## Installing ## Installing


After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```

+ 5
- 1
docs/configuring-playbook-client-hydrogen.md Ver arquivo

@@ -39,4 +39,8 @@ If you've decided to reuse the `matrix.` domain, you won't need to do any extra


## Installing ## Installing


After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```

+ 5
- 1
docs/configuring-playbook-client-schildichat-web.md Ver arquivo

@@ -69,4 +69,8 @@ If you've decided to reuse the `matrix.` domain, you won't need to do any extra


## Installing ## Installing


After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```

+ 5
- 1
docs/configuring-playbook-dendrite.md Ver arquivo

@@ -34,4 +34,8 @@ Alternatively, **if there is no pre-defined variable** for a Dendrite setting yo


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```

+ 5
- 1
docs/configuring-playbook-dynamic-dns.md Ver arquivo

@@ -25,7 +25,11 @@ matrix_dynamic_dns_domain_configurations:


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Additional Reading ## Additional Reading




+ 5
- 1
docs/configuring-playbook-etherpad.md Ver arquivo

@@ -44,7 +44,11 @@ If you've decided to reuse the `matrix.` domain, you won't need to do any extra


## Installing ## Installing


After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Usage ## Usage




+ 5
- 1
docs/configuring-playbook-ma1sd.md Ver arquivo

@@ -131,7 +131,11 @@ matrix_ma1sd_configuration_extension_yaml: |


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Troubleshooting ## Troubleshooting




+ 5
- 1
docs/configuring-playbook-matrix-authentication-service.md Ver arquivo

@@ -288,7 +288,11 @@ If you've decided to use the default hostname, you won't need to do any extra DN


## Installing ## Installing


Now that you've [adjusted the playbook configuration](#adjusting-the-playbook-configuration) and [your DNS records](#adjusting-dns-records), you can run the [installation](installing.md) command: `just install-all`
Now that you've [adjusted the playbook configuration](#adjusting-the-playbook-configuration) and [your DNS records](#adjusting-dns-records), you can run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


If you're in the process of migrating an existing Synapse homeserver to MAS, you should now follow the rest of the steps in the [Migrating an existing Synapse homeserver to Matrix Authentication Service](#migrating-an-existing-synapse-homeserver-to-matrix-authentication-service) guide. If you're in the process of migrating an existing Synapse homeserver to MAS, you should now follow the rest of the steps in the [Migrating an existing Synapse homeserver to Matrix Authentication Service](#migrating-an-existing-synapse-homeserver-to-matrix-authentication-service) guide.




+ 5
- 1
docs/configuring-playbook-matrix-ldap-registration-proxy.md Ver arquivo

@@ -34,4 +34,8 @@ matrix_ldap_registration_proxy_systemd_wanted_services_list_custom:


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```

+ 5
- 1
docs/configuring-playbook-mautrix-bridges.md Ver arquivo

@@ -93,7 +93,11 @@ You may wish to look at `roles/custom/matrix-bridge-mautrix-SERVICENAME/template


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Set up Double Puppeting ## Set up Double Puppeting




+ 5
- 1
docs/configuring-playbook-pantalaimon.md Ver arquivo

@@ -18,4 +18,8 @@ The default configuration should suffice. For advanced configuration, you can ov


## 2. Installing ## 2. Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```

+ 5
- 1
docs/configuring-playbook-prometheus-grafana.md Ver arquivo

@@ -55,7 +55,11 @@ By default, you will need to create a CNAME record for `stats`. See [Configuring


## Installing ## Installing


After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## What does it do? ## What does it do?




+ 5
- 1
docs/configuring-playbook-prometheus-nginxlog.md Ver arquivo

@@ -22,7 +22,11 @@ matrix_prometheus_nginxlog_exporter_enabled: true


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## Docker Image Compatibility ## Docker Image Compatibility




+ 5
- 1
docs/configuring-playbook-prometheus-postgres.md Ver arquivo

@@ -12,7 +12,11 @@ prometheus_postgres_exporter_enabled: true


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


## What does it do? ## What does it do?




+ 5
- 1
docs/configuring-playbook-rest-auth.md Ver arquivo

@@ -26,4 +26,8 @@ matrix_synapse_password_config_localdb_enabled: false


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```

+ 5
- 1
docs/configuring-playbook-riot-web.md Ver arquivo

@@ -30,4 +30,8 @@ There are a few options for handling this:


### Re-running the playbook ### Re-running the playbook


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```

+ 5
- 1
docs/configuring-playbook-shared-secret-auth.md Ver arquivo

@@ -25,4 +25,8 @@ matrix_synapse_password_config_localdb_enabled: false


## Installing ## Installing


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```

+ 5
- 1
docs/configuring-playbook-sliding-sync-proxy.md Ver arquivo

@@ -39,7 +39,11 @@ If you've decided to use the default hostname, you won't need to do any extra DN


## Installing ## Installing


After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command: `just install-all`.
After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


### External databases ### External databases




+ 5
- 1
docs/configuring-playbook-synapse-usage-exporter.md Ver arquivo

@@ -50,4 +50,8 @@ If you've decided to use the default hostname, you won't need to do any extra DN


## Installing ## Installing


After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```

+ 5
- 1
docs/registering-users.md Ver arquivo

@@ -112,7 +112,11 @@ For Dendrite:
matrix_dendrite_client_api_registration_disabled: false matrix_dendrite_client_api_registration_disabled: false
``` ```


After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all`
After configuring the playbook, run the [installation](installing.md) command:

```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
```


If you're opening up registrations publicly like this, you might also wish to [configure CAPTCHA protection](configuring-captcha.md). If you're opening up registrations publicly like this, you might also wish to [configure CAPTCHA protection](configuring-captcha.md).




Carregando…
Cancelar
Salvar