From 7553c7ca4e4327fe33f198334fcd0bcc5e82de7b Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Wed, 20 Jul 2022 00:12:49 +0000 Subject: [PATCH] docs: Document that you need to copy slack-data.zip onto the server. --- templates/zerver/help/import-from-slack.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/templates/zerver/help/import-from-slack.md b/templates/zerver/help/import-from-slack.md index 34d0933192..875f12bd64 100644 --- a/templates/zerver/help/import-from-slack.md +++ b/templates/zerver/help/import-from-slack.md @@ -74,6 +74,9 @@ First skipping "Step 3: Create a Zulip organization, and log in" (you'll create your Zulip organization via the data import tool instead). +Copy the `slack_data.zip` file you obtained above onto the Zulip +server, and put it in `/tmp/`. + Log in to a shell on your Zulip server as the `zulip` user. To import with the most common configuration, run the following commands, replacing `` with the value generated above. @@ -81,8 +84,8 @@ the most common configuration, run the following commands, replacing ``` cd /home/zulip/deployments/current ./scripts/stop-server -./manage.py convert_slack_data slack_data.zip --token --output converted_slack_data -./manage.py import '' converted_slack_data +./manage.py convert_slack_data /tmp/slack_data.zip --token --output /tmp/converted_slack_data +./manage.py import '' /tmp/converted_slack_data ./scripts/start-server ```