Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dnsviz/dnsviz.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasey Deccio <casey@deccio.net>2021-07-28 00:36:36 +0300
committerGitHub <noreply@github.com>2021-07-28 00:36:36 +0300
commitabb41850bb78033a74b37b87780cf960b6766c2e (patch)
tree6e17ae864b4dc3d0941f899f79a7317b279621d8
parentf882cdfa2413384bc9ebb57d093255aea1a234fa (diff)
Add reference to RHEL 8 / CentOS 8
-rw-r--r--README.md18
1 files changed, 13 insertions, 5 deletions
diff --git a/README.md b/README.md
index 7c83b4c..81bc6cd 100644
--- a/README.md
+++ b/README.md
@@ -24,8 +24,8 @@ via Homebrew or MacPorts.
The remainer of this section covers other methods of installation, including a
list of [dependencies](#dependencies), installation to a
[virtual environment](#installation-in-a-virtual-environment), and installation
-on [Fedora](#fedora-rpm-build-and-install) and
-[RHEL7](#rhel7-rpm-build-and-install).
+on [Fedora, RHEL 8, CentOS 8,](#fedora-rhel-8-centos-8-rpm-build-and-install) and
+[RHEL 7](#rhel-7-rpm-build-and-install).
Instructions for running in a Docker container are also available
[later in this document](#docker-container).
@@ -94,7 +94,15 @@ or locally, from a downloaded or cloned copy of DNSViz:
```
-### Fedora RPM Build and Install
+### Fedora / RHEL 8 / CentOS 8 RPM Build and Install
+
+*RHEL 8 only*: Enable CodeReady Linux Builder by following the instructions [here](https://access.redhat.com/articles/4348511).
+
+*CentOS 8 only*: Enable PowerTools and EPEL:
+```
+sudo dnf config-manager --set-enabled powertools
+sudo dnf install epel-release
+```
Install the tools for building an RPM, and set up the rpmbuild tree.
```
@@ -115,7 +123,7 @@ Install dnspython, pygraphviz, and M2Crypto.
```
$ sudo dnf install python3-dns python3-pygraphviz python3-m2crypto
```
-(Note that as of Fedora 33, the latest version of M2Crypto is 0.35.2. If you
+(Note that as of Fedora 33 / RHEL 8 / CentOS 8, the latest version of M2Crypto is 0.35.2. If you
would like support for DNSSEC algorithms 15 (Ed25519) and 16 (Ed448), you will
need to install M2Crypto using `pip3`. For example, see [installation to a
virtual environment](#installation-in-a-virtual-environment).)
@@ -127,7 +135,7 @@ $ sudo rpm -iv rpmbuild/RPMS/noarch/dnsviz-*-1.*.noarch.rpm
```
-### RHEL7 RPM Build and Install
+### RHEL 7 RPM Build and Install
Install pygraphviz, M2Crypto, and dnspython, after installing their build dependencies.
```