3
0
mirror of https://github.com/spantaleev/matrix-docker-ansible-deploy.git synced 2025-10-21 23:53:24 +00:00

Replace <your-username> with YOUR_USERNAME_HERE

This is a common expression and should avoid misunderstanding that `<` and `>` would need to be included

Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
This commit is contained in:
Suguru Hirahara
2024-11-17 01:58:21 +09:00
parent 27ede17d3a
commit 4bf5f30fbd
3 changed files with 13 additions and 13 deletions

View File

@@ -108,11 +108,11 @@ As you have configured your brand new server and the client, you need to **creat
To register a user via this Ansible playbook, run the command below on your local computer.
**Notes**:
- Before running it, make sure to edit `<your-username>` and `<your-password>`
- In the command below, `<your-username>` is just a plain username (like `john`), not your full `@user:example.com` identifier
- Before running it, make sure to edit `YOUR_USERNAME_HERE` and `<your-password>`
- In the command below, `YOUR_USERNAME_HERE` is just a plain username (like `john`), not your full `@user:example.com` identifier
```sh
ansible-playbook -i inventory/hosts setup.yml --extra-vars='username=<your-username> password=<your-password> admin=<yes|no>' --tags=register-user
ansible-playbook -i inventory/hosts setup.yml --extra-vars='username=YOUR_USERNAME_HERE password=<your-password> admin=<yes|no>' --tags=register-user
# Example: `ansible-playbook -i inventory/hosts setup.yml --extra-vars='username=john password=secret-password admin=yes' --tags=register-user`
```