From af89e11f6070e52284cf5bb8a9ff084fe7152f37 Mon Sep 17 00:00:00 2001 From: Suguru Hirahara <acioustick@noreply.codeberg.org> Date: Sun, 24 Nov 2024 21:19:13 +0900 Subject: [PATCH] Edit docs/maintenance-migrating.md: instruction to run ansible-playbook commands locally Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org> --- docs/maintenance-migrating.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/maintenance-migrating.md b/docs/maintenance-migrating.md index 66f5cd8eb..dbfc83086 100644 --- a/docs/maintenance-migrating.md +++ b/docs/maintenance-migrating.md @@ -44,7 +44,7 @@ Having adjusted DNS records, replace the old server's external IP address on the ## Create `matrix` user and group on the new server -After updating `inventory/hosts` file, run the command below to create the `matrix` user and group on the new server: +After updating `inventory/hosts` file, run the command below on your local computer to create the `matrix` user and group on the new server: ```sh ansible-playbook -i inventory/hosts setup.yml --tags=setup-system-user @@ -58,7 +58,7 @@ chown -R matrix:matrix /matrix ## Start all services on the new server -Finally, run the command below to finish the installation and start all services: +Finally, run the command below on your local computer to finish the installation and start all services: ```sh ansible-playbook -i inventory/hosts setup.yml --tags=install-all,start