From 7d7d727865ec1e7702e00e8c6a7e4b2a90f34659 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Thu, 26 Aug 2021 02:14:59 +0000 Subject: [PATCH] tools: Switch to download.zulip.com from www.zulip.org. --- docs/production/install.md | 6 +++--- docs/production/upgrade-or-modify.md | 4 ++-- docs/subsystems/release-checklist.md | 2 +- tools/ci/Dockerfile.prod | 2 +- tools/oneclickapps/README.md | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/production/install.md b/docs/production/install.md index 77e5e66638..3a28aebdea 100644 --- a/docs/production/install.md +++ b/docs/production/install.md @@ -15,17 +15,17 @@ you can create a test organization at . ## Step 1: Download the latest release Download and unpack [the latest built server -tarball](https://www.zulip.org/dist/releases/zulip-server-latest.tar.gz) +tarball](https://download.zulip.com/server/zulip-server-latest.tar.gz) with the following commands: ```bash cd $(mktemp -d) -curl -fLO https://www.zulip.org/dist/releases/zulip-server-latest.tar.gz +curl -fLO https://download.zulip.com/server/zulip-server-latest.tar.gz tar -xf zulip-server-latest.tar.gz ``` * If you'd like to verify the download, we -[publish the sha256sums of our release tarballs](https://www.zulip.org/dist/releases/SHA256SUMS.txt). +[publish the sha256sums of our release tarballs](https://download.zulip.com/server/SHA256SUMS.txt). * You can also [install a pre-release version of Zulip](../production/deployment.html#installing-zulip-from-git) using code from our [repository on GitHub](https://github.com/zulip/zulip/). diff --git a/docs/production/upgrade-or-modify.md b/docs/production/upgrade-or-modify.md index 4435fd45f0..83d3cd62df 100644 --- a/docs/production/upgrade-or-modify.md +++ b/docs/production/upgrade-or-modify.md @@ -24,11 +24,11 @@ to a new Zulip release: for all releases newer than what is currently installed. 1. Download the appropriate release tarball from - You can download the latest + You can download the latest release with: ```bash - curl -fLO https://www.zulip.org/dist/releases/zulip-server-latest.tar.gz + curl -fLO https://download.zulip.com/server/zulip-server-latest.tar.gz ``` You also have the option of upgrading Zulip [to a version in a Git diff --git a/docs/subsystems/release-checklist.md b/docs/subsystems/release-checklist.md index 77a80a42ff..90b54feed0 100644 --- a/docs/subsystems/release-checklist.md +++ b/docs/subsystems/release-checklist.md @@ -62,7 +62,7 @@ preparing a new release. **Note:** This will trigger the [GitHub action](https://github.com/zulip/zulip/blob/master/tools/oneclickapps/README.md) for updating DigitalOcean one-click app image. The action uses the latest release - tarball published on `zulip.org` for creating the image. + tarball published on `download.zulip.com` for creating the image. * Update the [Docker image](https://github.com/zulip/docker-zulip) and do a release of that. * Update the image of DigitalOcean one click app using diff --git a/tools/ci/Dockerfile.prod b/tools/ci/Dockerfile.prod index 142af5e458..bf2c01f0d4 100644 --- a/tools/ci/Dockerfile.prod +++ b/tools/ci/Dockerfile.prod @@ -17,7 +17,7 @@ RUN if (. /etc/os-release && [ "$ID $VERSION_ID" = 'ubuntu 18.04' ]); then \ # Download the release tarball, start rabbitmq server and install the server ARG VERSION RUN cd $(mktemp -d) \ - && curl -fLO "https://www.zulip.org/dist/releases/zulip-server-$VERSION.tar.gz" \ + && curl -fLO "https://download.zulip.com/server/zulip-server-$VERSION.tar.gz" \ && tar -xf "zulip-server-$VERSION.tar.gz" \ && sudo service rabbitmq-server start \ && sudo service rabbitmq-server status \ diff --git a/tools/oneclickapps/README.md b/tools/oneclickapps/README.md index 469fda9bf8..21c835b137 100644 --- a/tools/oneclickapps/README.md +++ b/tools/oneclickapps/README.md @@ -4,7 +4,7 @@ This directory contains scripts for automating the release of Zulip one click ap ## DigitalOcean 1-Click Application `prepare_digital_ocean_one_click_app_release.py` creates the image of DigitalOcean 1-Click -app from the latest Zulip release (fetched from https://www.zulip.org/dist/releases). It will +app from the latest Zulip release (fetched from https://download.zulip.com/server/). It will also create a test droplet from the image and send the image and droplet details to a pre-configured Zulip stream. Anyone, whose key is added to the Zulip DigitalOcean team can SSH into the droplet for testing.