From f6766d66fb18b1a06f5b94363f4253d74777f371 Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Wed, 6 May 2026 04:14:39 -0400 Subject: [PATCH] Update the instruction to update the playbook and role without using `just` or `make` Signed-off-by: Suguru Hirahara --- docs/installing.md | 2 +- docs/maintenance-upgrading-services.md | 2 +- docs/quick-start.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/installing.md b/docs/installing.md index 9bbfd5873..76e5312b5 100644 --- a/docs/installing.md +++ b/docs/installing.md @@ -27,7 +27,7 @@ To update your playbook directory and all upstream Ansible roles (defined in the - either: `just update` - or: a combination of `git pull` and `just roles` (or `make roles` if you have `make` program on your computer instead of `just`) -If you don't have either `just` tool or `make` program, you can run the `ansible-galaxy` tool directly: `rm -rf roles/galaxy; ansible-galaxy install -r requirements.yml -p roles/galaxy/ --force` +If you don't have either `just` tool or `make` program, you can run the `ansible-galaxy` tool directly after updating the playbook: `git pull; rm -rf roles/galaxy; ansible-galaxy install -r requirements.yml -p roles/galaxy/ --force` For details about `just` commands, take a look at: [Running `just` commands](just.md). diff --git a/docs/maintenance-upgrading-services.md b/docs/maintenance-upgrading-services.md index 7f0f1bc17..497c9154f 100644 --- a/docs/maintenance-upgrading-services.md +++ b/docs/maintenance-upgrading-services.md @@ -36,7 +36,7 @@ If it looks good to you, go to the `matrix-docker-ansible-deploy` directory, upd - either: `just update` - or: a combination of `git pull` and `just roles` (or `make roles` if you have `make` program on your computer instead of `just`) -If you don't have either `just` tool or `make` program, you can run the `ansible-galaxy` tool directly: `rm -rf roles/galaxy; ansible-galaxy install -r requirements.yml -p roles/galaxy/ --force` +If you don't have either `just` tool or `make` program, you can run the `ansible-galaxy` tool directly after updating the playbook: `git pull; rm -rf roles/galaxy; ansible-galaxy install -r requirements.yml -p roles/galaxy/ --force` **Note**: for details about `just` commands, take a look at: [Running `just` commands](just.md). diff --git a/docs/quick-start.md b/docs/quick-start.md index ae9328f0a..e895134f3 100644 --- a/docs/quick-start.md +++ b/docs/quick-start.md @@ -119,7 +119,7 @@ To update your playbook directory and all upstream Ansible roles, run: - either: `just update` - or: a combination of `git pull` and `just roles` (or `make roles` if you have `make` program on your computer instead of `just`) -If you don't have either `just` tool or `make` program, you can run the `ansible-galaxy` tool directly: `rm -rf roles/galaxy; ansible-galaxy install -r requirements.yml -p roles/galaxy/ --force` +If you don't have either `just` tool or `make` program, you can run the `ansible-galaxy` tool directly after updating the playbook: `git pull; rm -rf roles/galaxy; ansible-galaxy install -r requirements.yml -p roles/galaxy/ --force` ### Run installation command