Bläddra i källkod

Remove "ensure-matrix-users-created" from the raw ansible-playbook command which does not need it

Also: update the "just" recipes accordingly. "just install-all" and "just setup-all" run "ensure-matrix-users-created" tag as well, therefore they need to be replaced with "run-tags" recipes to skip "ensure-matrix-users-created"

Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
pull/3842/head
Suguru Hirahara 1 år sedan
förälder
incheckning
0a46f7bb64
Ingen känd nyckel hittad för denna signaturen i databasen GPG-nyckel ID: E4F9743DAB4B7B75
30 ändrade filer med 90 tillägg och 90 borttagningar
  1. +3
    -3
      docs/configuring-playbook-backup-borg.md
  2. +3
    -3
      docs/configuring-playbook-client-cinny.md
  3. +3
    -3
      docs/configuring-playbook-client-element-web.md
  4. +3
    -3
      docs/configuring-playbook-client-hydrogen.md
  5. +3
    -3
      docs/configuring-playbook-client-schildichat-web.md
  6. +3
    -3
      docs/configuring-playbook-dendrite.md
  7. +3
    -3
      docs/configuring-playbook-dimension.md
  8. +3
    -3
      docs/configuring-playbook-dynamic-dns.md
  9. +3
    -3
      docs/configuring-playbook-etherpad.md
  10. +3
    -3
      docs/configuring-playbook-jitsi.md
  11. +3
    -3
      docs/configuring-playbook-ma1sd.md
  12. +3
    -3
      docs/configuring-playbook-matrix-authentication-service.md
  13. +3
    -3
      docs/configuring-playbook-matrix-ldap-registration-proxy.md
  14. +3
    -3
      docs/configuring-playbook-matrix-registration.md
  15. +3
    -3
      docs/configuring-playbook-ntfy.md
  16. +3
    -3
      docs/configuring-playbook-pantalaimon.md
  17. +3
    -3
      docs/configuring-playbook-postgres-backup.md
  18. +3
    -3
      docs/configuring-playbook-prometheus-grafana.md
  19. +3
    -3
      docs/configuring-playbook-prometheus-nginxlog.md
  20. +3
    -3
      docs/configuring-playbook-prometheus-postgres.md
  21. +3
    -3
      docs/configuring-playbook-rageshake.md
  22. +3
    -3
      docs/configuring-playbook-rest-auth.md
  23. +3
    -3
      docs/configuring-playbook-riot-web.md
  24. +3
    -3
      docs/configuring-playbook-shared-secret-auth.md
  25. +3
    -3
      docs/configuring-playbook-sliding-sync-proxy.md
  26. +3
    -3
      docs/configuring-playbook-sygnal.md
  27. +3
    -3
      docs/configuring-playbook-synapse-auto-compressor.md
  28. +3
    -3
      docs/configuring-playbook-synapse-usage-exporter.md
  29. +3
    -3
      docs/faq.md
  30. +3
    -3
      docs/registering-users.md

+ 3
- 3
docs/configuring-playbook-backup-borg.md Visa fil

@@ -75,12 +75,12 @@ After configuring the playbook, run the [installation](installing.md) command:


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


## Manually start a backup ## Manually start a backup




+ 3
- 3
docs/configuring-playbook-client-cinny.md Visa fil

@@ -46,9 +46,9 @@ After configuring the playbook and [adjusting your DNS records](#adjusting-dns-r


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)

+ 3
- 3
docs/configuring-playbook-client-element-web.md Visa fil

@@ -75,9 +75,9 @@ After configuring the playbook and potentially [adjusting your DNS records](#adj


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)

+ 3
- 3
docs/configuring-playbook-client-hydrogen.md Visa fil

@@ -43,9 +43,9 @@ After configuring the playbook and potentially [adjusting your DNS records](#adj


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)

+ 3
- 3
docs/configuring-playbook-client-schildichat-web.md Visa fil

@@ -73,9 +73,9 @@ After configuring the playbook and potentially [adjusting your DNS records](#adj


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)

+ 3
- 3
docs/configuring-playbook-dendrite.md Visa fil

@@ -38,9 +38,9 @@ After configuring the playbook, run the [installation](installing.md) command:


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)

+ 3
- 3
docs/configuring-playbook-dimension.md Visa fil

@@ -73,12 +73,12 @@ After configuring the playbook and potentially [adjusting your DNS records](#adj


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


After Dimension has been installed you may need to log out and log back in for it to pick up the new integration manager. Then you can access integrations in Element Web by opening a room, clicking the Room info button (`i`) button in the top right corner of the screen, and then clicking Add widgets, bridges & bots. After Dimension has been installed you may need to log out and log back in for it to pick up the new integration manager. Then you can access integrations in Element Web by opening a room, clicking the Room info button (`i`) button in the top right corner of the screen, and then clicking Add widgets, bridges & bots.




+ 3
- 3
docs/configuring-playbook-dynamic-dns.md Visa fil

@@ -29,12 +29,12 @@ After configuring the playbook, run the [installation](installing.md) command:


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


## Additional Reading ## Additional Reading




+ 3
- 3
docs/configuring-playbook-etherpad.md Visa fil

@@ -48,12 +48,12 @@ After configuring the playbook and potentially [adjusting your DNS records](#adj


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


## Usage ## Usage




+ 3
- 3
docs/configuring-playbook-jitsi.md Visa fil

@@ -273,12 +273,12 @@ After configuring the playbook and potentially [adjusting your DNS records](#adj


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


## Usage ## Usage




+ 3
- 3
docs/configuring-playbook-ma1sd.md Visa fil

@@ -135,12 +135,12 @@ After configuring the playbook, run the [installation](installing.md) command:


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


## Troubleshooting ## Troubleshooting




+ 3
- 3
docs/configuring-playbook-matrix-authentication-service.md Visa fil

@@ -292,12 +292,12 @@ Now that you've [adjusted the playbook configuration](#adjusting-the-playbook-co


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


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.




+ 3
- 3
docs/configuring-playbook-matrix-ldap-registration-proxy.md Visa fil

@@ -38,9 +38,9 @@ After configuring the playbook, run the [installation](installing.md) command:


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)

+ 3
- 3
docs/configuring-playbook-matrix-registration.md Visa fil

@@ -56,12 +56,12 @@ After configuring the playbook and potentially [adjusting your DNS records](#adj


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


## Usage ## Usage




+ 3
- 3
docs/configuring-playbook-ntfy.md Visa fil

@@ -54,12 +54,12 @@ After configuring the playbook and potentially [adjusting your DNS records](#adj


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


## Usage ## Usage




+ 3
- 3
docs/configuring-playbook-pantalaimon.md Visa fil

@@ -22,9 +22,9 @@ After configuring the playbook, run the [installation](installing.md) command:


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)

+ 3
- 3
docs/configuring-playbook-postgres-backup.md Visa fil

@@ -33,9 +33,9 @@ After configuring the playbook, run the [installation](installing.md) command:


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)

+ 3
- 3
docs/configuring-playbook-prometheus-grafana.md Visa fil

@@ -59,12 +59,12 @@ After configuring the playbook and potentially [adjusting your DNS records](#adj


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


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




+ 3
- 3
docs/configuring-playbook-prometheus-nginxlog.md Visa fil

@@ -26,12 +26,12 @@ After configuring the playbook, run the [installation](installing.md) command:


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


## Docker Image Compatibility ## Docker Image Compatibility




+ 3
- 3
docs/configuring-playbook-prometheus-postgres.md Visa fil

@@ -16,12 +16,12 @@ After configuring the playbook, run the [installation](installing.md) command:


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


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




+ 3
- 3
docs/configuring-playbook-rageshake.md Visa fil

@@ -55,12 +55,12 @@ After configuring the playbook and potentially [adjusting your DNS records](#adj


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


## Usage ## Usage




+ 3
- 3
docs/configuring-playbook-rest-auth.md Visa fil

@@ -30,9 +30,9 @@ After configuring the playbook, run the [installation](installing.md) command:


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)

+ 3
- 3
docs/configuring-playbook-riot-web.md Visa fil

@@ -34,9 +34,9 @@ After configuring the playbook, run the [installation](installing.md) command:


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)

+ 3
- 3
docs/configuring-playbook-shared-secret-auth.md Visa fil

@@ -29,9 +29,9 @@ After configuring the playbook, run the [installation](installing.md) command:


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)

+ 3
- 3
docs/configuring-playbook-sliding-sync-proxy.md Visa fil

@@ -43,12 +43,12 @@ After configuring the playbook and potentially [adjusting your DNS records](#adj


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


### External databases ### External databases




+ 3
- 3
docs/configuring-playbook-sygnal.md Visa fil

@@ -81,12 +81,12 @@ After configuring the playbook and potentially [adjusting your DNS records](#adj


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


## Usage ## Usage




+ 3
- 3
docs/configuring-playbook-synapse-auto-compressor.md Visa fil

@@ -22,12 +22,12 @@ After configuring the playbook, run the [installation](installing.md) command:


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


## Usage ## Usage




+ 3
- 3
docs/configuring-playbook-synapse-usage-exporter.md Visa fil

@@ -54,9 +54,9 @@ After configuring the playbook and potentially [adjusting your DNS records](#adj


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)

+ 3
- 3
docs/faq.md Visa fil

@@ -273,12 +273,12 @@ After configuring the playbook, run the [installation](installing.md) command:


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


**Note**: without setting up [server delegation](howto-server-delegation.md) to `matrix.example.com`, your user identifiers will be like `@user:matrix.example.com`. This is equivalent to having an email address like `bob@mail.company.com`, instead of just `bob@company.com`. **Note**: without setting up [server delegation](howto-server-delegation.md) to `matrix.example.com`, your user identifiers will be like `@user:matrix.example.com`. This is equivalent to having an email address like `bob@mail.company.com`, instead of just `bob@company.com`.




+ 3
- 3
docs/registering-users.md Visa fil

@@ -116,12 +116,12 @@ After configuring the playbook, run the [installation](installing.md) command:


<!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. --> <!-- NOTE: let this conservative command run (instead of install-all) to make it clear that failure of the command means something is clearly broken. -->
```sh ```sh
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
``` ```


The shortcut commands with `just` program are also available: `just install-all` or `just setup-all`.
The shortcut commands with `just` program are also available: `just run-tags install-all,start` or `just run-tags setup-all,start`.


`just install-all` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)
`just run-tags install-all,start` is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just run-tags setup-all,start`, or these components will still remain installed. For more information about `just` shortcuts, take a look at this page: [Running `just` commands](just.md)


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).




Laddar…
Avbryt
Spara