From 0c5d9b0ae1e7b698bce0b025beb0882abfdb1684 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian-Samuel=20Geb=C3=BChr?= Date: Wed, 29 Mar 2023 13:31:17 +0200 Subject: [PATCH] Use just command --- docs/services/gotosocial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/services/gotosocial.md b/docs/services/gotosocial.md index ae93152..b5d5a54 100644 --- a/docs/services/gotosocial.md +++ b/docs/services/gotosocial.md @@ -65,14 +65,14 @@ serverA$ rsync -av -e "ssh" data/* root@serverB:/mash/gotosocial/data/ Install (but don't start) the service and database on the server. ```bash -yourPC$ ansible-playbook -i inventory/hosts setup.yml --tags=install-all +yourPC$ just run-tags install-all yourPC$ just run-tags import-postgres --extra-vars=server_path_postgres_dump=/mash/gotosocial/latest.sql --extra-vars=postgres_default_import_database=mash-gotosocial ``` Start the services on the new server ```bash -yourPC$ ansible-playbook -i inventory/hosts setup.yml --tags=start +yourPC$ just run-tags start ``` Done 🥳