From 53dd703b07d2ae7ab99f6fd124635459c28e538d Mon Sep 17 00:00:00 2001 From: Dov Benyomin Sohacheski Date: Tue, 8 Nov 2022 08:12:24 +0200 Subject: [PATCH] Add Red Hat OS --- diagrams/generic/os.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/diagrams/generic/os.py b/diagrams/generic/os.py index 301ae82c..879415a1 100644 --- a/diagrams/generic/os.py +++ b/diagrams/generic/os.py @@ -32,6 +32,10 @@ class Raspbian(_Os): _icon = "raspbian.png" +class RedHat(_Os): + _icon = "red-hat.png" + + class Suse(_Os): _icon = "suse.png" @@ -45,3 +49,4 @@ class Windows(_Os): # Aliases +RH = RedHat