From bc88b6dbbdea156dedc7b7a9311ccec4bfa32efb Mon Sep 17 00:00:00 2001 From: Jeff Ohrstrom Date: Mon, 9 Oct 2023 12:10:31 -0400 Subject: [PATCH] correct the packages to install for ADFS mellon (#862) --- .../authentication/adfs-with-auth-mellon.rst | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/source/authentication/adfs-with-auth-mellon.rst b/source/authentication/adfs-with-auth-mellon.rst index 5e455d97b..0e91bc045 100644 --- a/source/authentication/adfs-with-auth-mellon.rst +++ b/source/authentication/adfs-with-auth-mellon.rst @@ -19,10 +19,26 @@ Install mod_auth_mellon #. Ensure Software Collections is enabled on the system #. Install the mod_auth_mellon module: - .. code-block:: shell +.. tabs:: + + .. tab:: EL7 + + .. code-block:: shell yum install httpd24-mod_auth_mellon httpd24-mod_ssl + .. tab:: EL8+ + + .. code-block:: shell + + yum install mod_auth_mellon mod_ssl + + .. tab:: Ubuntu + + .. code-block:: shell + + apt install libapache2-mod-auth-mellon + Configure mod_auth_mellon --------------------------------------------------