From 5486395ed23b18782754c5a4fc2e1eba65581ea2 Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Sat, 23 Nov 2024 17:40:00 +0900 Subject: [PATCH] Fix entries on the table Signed-off-by: Suguru Hirahara --- docs/just.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/just.md b/docs/just.md index 3fb74bd00..3a875e76d 100644 --- a/docs/just.md +++ b/docs/just.md @@ -10,10 +10,10 @@ For some recipes such as `just update`, our `justfile` recommends to install [ag Here are some examples of shortcuts: -| Shortcut | Effect | +| Shortcut | Result | |-----------------------------------------------|----------------------------------------------------------------------------------------------------------------| -| `just roles` | Run `make roles` to install the necessary Ansible roles pinned in [`requirements.yml`](../requirements.yml) | -| `just update` | Run `git pull` (to update the playbook) and `just roles` | +| `just roles` | Install the necessary Ansible roles pinned in [`requirements.yml`](../requirements.yml) | +| `just update` | Run `git pull` (to update the playbook) and install the Ansible roles | | `just install-all` | Run `ansible-playbook -i inventory/hosts setup.yml --tags=install-all,ensure-matrix-users-created,start` | | `just setup-all` | Run `ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,ensure-matrix-users-created,start` | | `just install-all --ask-vault-pass` | Run commands with additional arguments (`--ask-vault-pass` will be appended to the above installation command) |