Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 47 additions & 1 deletion docs/local-mirror-els/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,4 +305,50 @@ rsync -avSHP --delete rsync://repo.tuxcare.com/ALMALINUX92ESU/ .
rsync -avSHP --delete rsync://repo.tuxcare.com/ALMALINUX/9.2/ .
```

</CodeWithCopy>
</CodeWithCopy>

### TuxCare 9.6 ESU

These instructions apply to AlmaLinux 9.6 ESU and Rocky Linux 9.6 ESU.

To create a local mirror of the [tuxcare-base and tuxcare-esu](https://repo.tuxcare.com/tuxcare/9.6/) repositories with security updates via `rsync`, use the following:

<CodeWithCopy>

```
rsync://repo.tuxcare.com/TUXCARE96ESU/
```

</CodeWithCopy>

For example:

<CodeWithCopy>

```
rsync -avSHP --delete rsync://repo.tuxcare.com/TUXCARE96ESU/ .
```

</CodeWithCopy>

:::tip Note
When configuring machines to use a local mirror for the TuxCare 9.6 ESU repository, set `priority=1` in the `tuxcare-esu` repo so ESU packages override the standard repos.

Example `/etc/yum.repos.d/tuxcare-esu.repo` file for TuxCare 9.6 ESU:

<CodeWithCopy>

```
[tuxcare-esu96]
name=TuxCare Enterprise Support for AlmaLinux 9.6 - ESU (local mirror)
baseurl=https://mirror.corp.lan/tuxcare/9.6/esu/x86_64/
enabled=1
gpgcheck=1
skip_if_unavailable=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-TuxCare
priority=1
```

</CodeWithCopy>

:::