From 3b4cbfb85f52880d0ef86e3d2d93a9227d3b1483 Mon Sep 17 00:00:00 2001 From: Michael Ramsey Date: Wed, 4 Aug 2021 22:15:32 -0400 Subject: [PATCH] Update install.py rockylinux detection --- install/install.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install/install.py b/install/install.py index 01b055e19..31fbd3006 100755 --- a/install/install.py +++ b/install/install.py @@ -55,6 +55,8 @@ def get_distro(): return cent8 if data.find('AlmaLinux release 8') > -1: return cent8 + if data.find('Rocky Linux 8') > -1: + return cent8 else: logging.InstallLog.writeToFile("Can't find linux release file - fatal error")