Skip to content

Commit 0ae2f5a

Browse files
committed
Update example CentOS to use correct file name
Signed-off-by: Inhishonor <[email protected]>
1 parent 3790933 commit 0ae2f5a

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

admin_manual/installation/example_centos.rst

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -145,28 +145,25 @@ Now download the archive of the latest Nextcloud version:
145145
* Go to the `Nextcloud Download Page <https://nextcloud.com/install>`_.
146146
* Go to **Download Nextcloud Server > Download > Archive file for
147147
server owners** and download either the tar.bz2 or .zip archive.
148-
* This downloads a file named nextcloud-x.y.z.tar.bz2 or nextcloud-x.y.z.zip
149-
(where x.y.z is the version number).
150-
* Download its corresponding checksum file, e.g. nextcloud-x.y.z.tar.bz2.md5,
151-
or nextcloud-x.y.z.tar.bz2.sha256.
148+
* Download its corresponding checksum file, e.g. latest.tar.bz2.md5,
149+
or latest.tar.bz2.sha256.
152150
* Verify the MD5 or SHA256 sum::
153151

154-
md5sum -c nextcloud-x.y.z.tar.bz2.md5 < nextcloud-x.y.z.tar.bz2
155-
sha256sum -c nextcloud-x.y.z.tar.bz2.sha256 < nextcloud-x.y.z.tar.bz2
156-
md5sum -c nextcloud-x.y.z.zip.md5 < nextcloud-x.y.z.zip
157-
sha256sum -c nextcloud-x.y.z.zip.sha256 < nextcloud-x.y.z.zip
152+
md5sum -c latest.tar.bz2.md5 < latest.tar.bz2
153+
sha256sum -c latest.tar.bz2.sha256 < latest.tar.bz2
154+
md5sum -c latest.zip.md5 < latest.zip
155+
sha256sum -c latest.zip.sha256 < latest.zip
158156

159157
* You may also verify the PGP signature::
160158

161-
wget https://download.nextcloud.com/server/releases/nextcloud-x.y.z.tar.bz2.asc
159+
wget https://download.nextcloud.com/server/releases/latest.tar.bz2.asc
162160
wget https://nextcloud.com/nextcloud.asc
163161
gpg --import nextcloud.asc
164-
gpg --verify nextcloud-x.y.z.tar.bz2.asc nextcloud-x.y.z.tar.bz2
165-
162+
gpg --verify latest.tar.bz2.asc latest.tar.bz2
166163

167164
For the sake of the walk-through, we grabbed the latest version of Nextcloud in the form a zip file, confirmed the download with the above-mentioned command, and now we will extract it::
168165

169-
unzip nextcloud-*.zip
166+
unzip latest.zip
170167

171168
Copy the content over to the root directory of your webserver. In our case, we are using apache so it will be ``/var/www/html/``::
172169

0 commit comments

Comments
 (0)