-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from annlev/master
TCR-342 Hide block but with access by link
- Loading branch information
Showing
2 changed files
with
94 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
## Installation instructions of a local mirror with ELS updates | ||
|
||
We provide the ability to create local mirrors of Extended Lifecycle Support updates. | ||
|
||
To obtain the access to the local mirroring, provide your External IP address to your Account Manager or send it to [sales@tuxcare.com](mailto:sales@cloudlinux.com). To create a local mirror of the repository with security updates via `rsync`, you need to use one of the following. | ||
|
||
### CentOS 6 ELS | ||
|
||
To create a local mirror with security updates of repo with centos6-els security updates, use the following: | ||
|
||
``` | ||
rsync://repo.cloudlinux.com/CENTOS6ELS/ | ||
``` | ||
|
||
To create a local mirror of CentOS mirrors, use the following: | ||
|
||
``` | ||
rsync://repo.cloudlinux.com/CENTOS6/ | ||
``` | ||
|
||
For example: | ||
|
||
``` | ||
rsync -avSHP --delete rsync://repo.cloudlinux.com/CENTOS6ELS/ . | ||
rsync -avSHP --delete rsync://repo.cloudlinux.com/CENTOS6/ . | ||
``` | ||
|
||
### OracleLinux 6 ELS | ||
|
||
To create a local mirror of the repository with security updates via `rsync`, use the following: | ||
|
||
``` | ||
rsync://repo.cloudlinux.com/ORALINUX6ELS/ | ||
``` | ||
|
||
For example: | ||
|
||
``` | ||
rsync -avSHP --delete rsync://repo.cloudlinux.com/ORALINUX6ELS/ . | ||
``` | ||
|
||
### CentOS 8 ELS | ||
|
||
To create a local mirror of the repository with security updates via rsync, use the following: | ||
|
||
* For CentOS 8.4: | ||
|
||
``` | ||
rsync://repo.cloudlinux.com/CENTOS84_ELS/ | ||
``` | ||
|
||
For example: | ||
|
||
``` | ||
rsync -avSHP --delete rsync://repo.cloudlinux.com/CENTOS84_ELS/ . | ||
``` | ||
|
||
* For CentOS 8.5: | ||
|
||
``` | ||
rsync://repo.cloudlinux.com/CENTOS85_ELS/ | ||
``` | ||
|
||
For example: | ||
|
||
``` | ||
rsync -avSHP --delete rsync://repo.cloudlinux.com/CENTOS85_ELS/ . | ||
``` | ||
|
||
### Ubuntu 16.04 ELS | ||
|
||
To create a local mirror of the repository with security updates via `rsync`, use the following: | ||
|
||
``` | ||
rsync://repo.cloudlinux.com/UBUNTU1604ELS/ | ||
``` | ||
|
||
For example: | ||
|
||
``` | ||
rsync -avSHP --delete rsync://repo.cloudlinux.com/UBUNTU1604ELS/ . | ||
``` | ||
|
||
### Ubuntu 18.04 ELS | ||
|
||
To create a local mirror of the repository with security updates via `rsync`, use the following: | ||
``` | ||
rsync://repo.cloudlinux.com/UBUNTU1804ELS/ | ||
``` | ||
|
||
For example: | ||
``` | ||
rsync -avSHP --delete rsync://repo.cloudlinux.com/UBUNTU1804ELS/ . | ||
``` |