Skip to content

Commit 8eb1bd4

Browse files
committed
docs(updater): use real download URL in --url examples
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
1 parent e2e1753 commit 8eb1bd4

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

admin_manual/maintenance/update.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -265,14 +265,14 @@ Point the updater at any HTTP/HTTPS URL:
265265
.. code-block:: bash
266266
267267
sudo -E -u www-data php /var/www/nextcloud/updater/updater.phar \
268-
--url https://mirror.example.com/nextcloud-30.0.0.tar.bz2
268+
--url https://download.nextcloud.com/server/releases/nextcloud-33.0.0.zip
269269
270270
For a locally staged archive, use a ``file://`` URL:
271271

272272
.. code-block:: bash
273273
274274
sudo -E -u www-data php /var/www/nextcloud/updater/updater.phar \
275-
--url file:///tmp/nextcloud-30.0.0.tar.bz2
275+
--url file:///tmp/nextcloud-33.0.0.zip
276276
277277
Signature verification
278278
~~~~~~~~~~~~~~~~~~~~~~
@@ -288,7 +288,7 @@ automatically. You have two options:
288288
.. code-block:: bash
289289
290290
sudo -E -u www-data php /var/www/nextcloud/updater/updater.phar \
291-
--url file:///tmp/nextcloud-30.0.0.tar.bz2 \
291+
--url file:///tmp/nextcloud-33.0.0.zip \
292292
--signature "BASE64_SIGNATURE_HERE"
293293
294294
* **Skip verification** — pass ``--no-verify`` to disable integrity checking
@@ -298,7 +298,7 @@ automatically. You have two options:
298298
.. code-block:: bash
299299
300300
sudo -E -u www-data php /var/www/nextcloud/updater/updater.phar \
301-
--url file:///tmp/nextcloud-30.0.0.tar.bz2 \
301+
--url file:///tmp/nextcloud-33.0.0.zip \
302302
--no-verify
303303
304304
.. warning::
@@ -312,7 +312,7 @@ runs:
312312
.. code-block:: bash
313313
314314
sudo -E -u www-data php /var/www/nextcloud/updater/updater.phar \
315-
--url file:///tmp/nextcloud-30.0.0.tar.bz2 \
315+
--url file:///tmp/nextcloud-33.0.0.zip \
316316
--signature "BASE64_SIGNATURE_HERE" \
317317
--no-interaction
318318

0 commit comments

Comments
 (0)