From 5f9ef75e13f631d7316da978a6b19eed6ca168f5 Mon Sep 17 00:00:00 2001 From: Andrew Lukoshko Date: Thu, 2 Sep 2021 10:23:47 +0000 Subject: [PATCH] AlmaLinux changes --- SOURCES/almalinux.conf | 30 + ...aconda-almalinux-baseos-repo-default.patch | 13 + ...da-almalinux-disable-cdn-radiobutton.patch | 12 + ...conda-almalinux-disable-subscription.patch | 14 + .../anaconda-almalinux-installer-colors.patch | 16 + ...malinux-remove-visible-rh-references.patch | 80 + .../anaconda-almalinux-update-smt-url.patch | 2298 +++++++++++++++++ SPECS/anaconda.spec | 38 +- 8 files changed, 2497 insertions(+), 4 deletions(-) create mode 100644 SOURCES/almalinux.conf create mode 100644 SOURCES/anaconda-almalinux-baseos-repo-default.patch create mode 100644 SOURCES/anaconda-almalinux-disable-cdn-radiobutton.patch create mode 100644 SOURCES/anaconda-almalinux-disable-subscription.patch create mode 100644 SOURCES/anaconda-almalinux-installer-colors.patch create mode 100644 SOURCES/anaconda-almalinux-remove-visible-rh-references.patch create mode 100644 SOURCES/anaconda-almalinux-update-smt-url.patch diff --git a/SOURCES/almalinux.conf b/SOURCES/almalinux.conf new file mode 100644 index 0000000..d9d55c6 --- /dev/null +++ b/SOURCES/almalinux.conf @@ -0,0 +1,30 @@ +# Anaconda configuration file for AlmaLinux. + +[Product] +product_name = AlmaLinux + +[Base Product] +product_name = Red Hat Enterprise Linux + +[Anaconda] +# List of enabled Anaconda DBus modules for RHEL. +# but without org.fedoraproject.Anaconda.Modules.Subscription +kickstart_modules = + org.fedoraproject.Anaconda.Modules.Timezone + org.fedoraproject.Anaconda.Modules.Network + org.fedoraproject.Anaconda.Modules.Localization + org.fedoraproject.Anaconda.Modules.Security + org.fedoraproject.Anaconda.Modules.Users + org.fedoraproject.Anaconda.Modules.Payloads + org.fedoraproject.Anaconda.Modules.Storage + org.fedoraproject.Anaconda.Modules.Services + +[Bootloader] +efi_dir = almalinux + +[Payload] +enable_closest_mirror = True +default_source = CLOSEST_MIRROR + +[License] +eula = /usr/share/almalinux-release/EULA diff --git a/SOURCES/anaconda-almalinux-baseos-repo-default.patch b/SOURCES/anaconda-almalinux-baseos-repo-default.patch new file mode 100644 index 0000000..962a576 --- /dev/null +++ b/SOURCES/anaconda-almalinux-baseos-repo-default.patch @@ -0,0 +1,13 @@ +diff -Naur anaconda-33.16.4.15/pyanaconda/core/constants.py anaconda-33.16.4.15.alma/pyanaconda/core/constants.py +--- anaconda-33.16.4.15/pyanaconda/core/constants.py 2021-02-02 10:55:25.000000000 +0000 ++++ anaconda-33.16.4.15.alma/pyanaconda/core/constants.py 2021-06-23 13:56:29.257233450 +0000 +@@ -60,7 +60,8 @@ + DEFAULT_REPOS = [productName.split('-')[0].lower(), + "fedora-modular-server", + "rawhide", +- "BaseOS"] ++ "BaseOS", ++ "baseos"] + + # Get list of repo names which should be used as updates repos + DEFAULT_UPDATE_REPOS = ["updates", diff --git a/SOURCES/anaconda-almalinux-disable-cdn-radiobutton.patch b/SOURCES/anaconda-almalinux-disable-cdn-radiobutton.patch new file mode 100644 index 0000000..9cbde67 --- /dev/null +++ b/SOURCES/anaconda-almalinux-disable-cdn-radiobutton.patch @@ -0,0 +1,12 @@ +diff -uNrp anaconda-33.16.3.26.orig/pyanaconda/ui/gui/spokes/installation_source.py anaconda-33.16.3.26/pyanaconda/ui/gui/spokes/installation_source.py +--- anaconda-33.16.3.26.orig/pyanaconda/ui/gui/spokes/installation_source.py 2020-08-24 05:10:07.000000000 -0500 ++++ anaconda-33.16.3.26/pyanaconda/ui/gui/spokes/installation_source.py 2020-11-16 10:41:09.663907591 -0600 +@@ -704,6 +704,8 @@ class SourceSpoke(NormalSpoke, GUISpokeI + self._network_button = self.builder.get_object("networkRadioButton") + self._network_box = self.builder.get_object("networkBox") + ++ really_hide(self._cdn_button) ++ + self._url_entry = self.builder.get_object("urlEntry") + self._protocol_combo_box = self.builder.get_object("protocolComboBox") + self._iso_chooser_button = self.builder.get_object("isoChooserButton") diff --git a/SOURCES/anaconda-almalinux-disable-subscription.patch b/SOURCES/anaconda-almalinux-disable-subscription.patch new file mode 100644 index 0000000..ffe6c9d --- /dev/null +++ b/SOURCES/anaconda-almalinux-disable-subscription.patch @@ -0,0 +1,14 @@ +diff -uprN a/pyanaconda/ui/gui/spokes/subscription.py b/pyanaconda/ui/gui/spokes/subscription.py +--- a/pyanaconda/ui/gui/spokes/subscription.py 2020-09-04 11:31:43.743451360 +0300 ++++ b/pyanaconda/ui/gui/spokes/subscription.py 2020-09-04 11:33:07.002306508 +0300 +@@ -540,6 +540,10 @@ class SubscriptionSpoke(NormalSpoke): + # also set the spoke warning banner + self.show_warning_message(error_message) + ++ @property ++ def showable(self): ++ return False ++ + def initialize(self): + NormalSpoke.initialize(self) + self.initialize_start() diff --git a/SOURCES/anaconda-almalinux-installer-colors.patch b/SOURCES/anaconda-almalinux-installer-colors.patch new file mode 100644 index 0000000..6c8b77b --- /dev/null +++ b/SOURCES/anaconda-almalinux-installer-colors.patch @@ -0,0 +1,16 @@ +diff -uprN a/data/anaconda-gtk.css b/data/anaconda-gtk.css +--- a/data/anaconda-gtk.css 2020-11-16 01:33:12.596735620 +0300 ++++ b/data/anaconda-gtk.css 2020-11-16 01:35:17.925684936 +0300 +@@ -92,10 +92,11 @@ infobar.error { + + @define-color redhat #2d2d2d; + @define-color fedora #2f4265; ++@define-color almalinux #0b2335; + + /* theme colors/images */ + +-@define-color product_bg_color @redhat; ++@define-color product_bg_color @almalinux; + + /* logo and sidebar classes */ + diff --git a/SOURCES/anaconda-almalinux-remove-visible-rh-references.patch b/SOURCES/anaconda-almalinux-remove-visible-rh-references.patch new file mode 100644 index 0000000..00e5940 --- /dev/null +++ b/SOURCES/anaconda-almalinux-remove-visible-rh-references.patch @@ -0,0 +1,80 @@ +diff -Naur anaconda-33.16.3.26/data/liveinst/gnome/rhel-welcome.desktop anaconda-33.16.3.26.alma/data/liveinst/gnome/rhel-welcome.desktop +--- anaconda-33.16.3.26/data/liveinst/gnome/rhel-welcome.desktop 2020-05-25 18:17:00.000000000 +0300 ++++ anaconda-33.16.3.26.alma/data/liveinst/gnome/rhel-welcome.desktop 2021-01-22 07:43:25.007068971 +0300 +@@ -1,5 +1,5 @@ + [Desktop Entry] +-Name=Welcome to Red Hat Enterprise Linux ++Name=Welcome to AlmaLinux + Exec=/usr/share/anaconda/gnome/rhel-welcome + Terminal=false + Type=Application +diff -Naur anaconda-33.16.3.26/docs/intro.rst anaconda-33.16.3.26.alma/docs/intro.rst +--- anaconda-33.16.3.26/docs/intro.rst 2020-05-27 07:53:25.000000000 +0300 ++++ anaconda-33.16.3.26.alma/docs/intro.rst 2021-01-22 07:43:24.989735757 +0300 +@@ -1,8 +1,8 @@ + Introduction to Anaconda + ======================== + +-Anaconda is the installation program used by Fedora, Red Hat Enterprise Linux +-and some other distributions. ++Anaconda is the installation program used by Fedora, Red Hat Enterprise Linux, ++AlmaLinux, and some other distributions. + + During installation, a target computer's hardware is identified and configured + and the appropriate file systems for the system's architecture are created. +diff -Naur anaconda-33.16.3.26/docs/iscsi.rst anaconda-33.16.3.26.alma/docs/iscsi.rst +--- anaconda-33.16.3.26/docs/iscsi.rst 2018-11-08 13:54:59.000000000 +0300 ++++ anaconda-33.16.3.26.alma/docs/iscsi.rst 2021-01-22 07:43:24.988652432 +0300 +@@ -139,7 +139,7 @@ + The booting problems are either due to incorrectly generated dracut boot + arguments or they are simply dracut bugs. + +-Note that many of the iscsi adapters are installed in different Red Hat machines ++Note that many of the iscsi adapters are installed in different AlmaLinux machines + and so the issues can often be reproduced and debugged. + + +diff -Naur anaconda-33.16.3.26/pyanaconda/core/constants.py anaconda-33.16.3.26.alma/pyanaconda/core/constants.py +--- anaconda-33.16.3.26/pyanaconda/core/constants.py 2021-01-22 07:44:21.084349532 +0300 ++++ anaconda-33.16.3.26.alma/pyanaconda/core/constants.py 2021-01-22 07:43:24.897653058 +0300 +@@ -160,8 +160,8 @@ + ) + + WARNING_HARDWARE_UNSUPPORTED = N_( +- "This hardware (or a combination thereof) is not supported by Red Hat. For more information " +- "on supported hardware, please refer to http://www.redhat.com/hardware." ++ "This hardware (or a combination thereof) is not supported by AlmaLinux. For more information " ++ "on supported hardware, please refer to https://almalinux.org." + ) + + # Storage messages +diff -Naur anaconda-33.16.4.15/data/liveinst/gnome/rhel-welcome.js anaconda-33.16.4.15.live/data/liveinst/gnome/rhel-welcome.js +--- anaconda-33.16.4.15/data/liveinst/gnome/rhel-welcome.js 2021-02-02 13:55:25.000000000 +0300 ++++ anaconda-33.16.4.15.live/data/liveinst/gnome/rhel-welcome.js 2021-07-23 06:36:40.836621474 +0300 +@@ -59,7 +59,7 @@ + default_width: 600, + default_height: 550, + skip_taskbar_hint: true, +- title: _("Welcome to Red Hat Enterprise Linux"), ++ title: _("Welcome to AlmaLinux"), + window_position: Gtk.WindowPosition.CENTER }); + this.window.connect('key-press-event', Lang.bind(this, + function(w, event) { +@@ -88,7 +88,7 @@ + spacing: 16 }); + tryContent.add(new Gtk.Image({ icon_name: 'media-optical', + pixel_size: 256 })); +- tryContent.add(makeLabel(_("Try RHEL"), true)); ++ tryContent.add(makeLabel(_("Try AlmaLinux"), true)); + + let tryButton = new Gtk.Button({ child: tryContent }); + buttonBox.add(tryButton); +@@ -104,7 +104,7 @@ + let installButton = new Gtk.Button({ child: installContent }); + buttonBox.add(installButton); + +- this._label = makeLabel(_("You are currently running Red Hat Enterprise Linux from live media.\nYou can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."), false); ++ this._label = makeLabel(_("You are currently running AlmaLinux from live media.\nYou can install AlmaLinux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."), false); + mainGrid.add(this._label); + + installButton.connect('clicked', Lang.bind(this, diff --git a/SOURCES/anaconda-almalinux-update-smt-url.patch b/SOURCES/anaconda-almalinux-update-smt-url.patch new file mode 100644 index 0000000..61fa875 --- /dev/null +++ b/SOURCES/anaconda-almalinux-update-smt-url.patch @@ -0,0 +1,2298 @@ +diff -ruN anaconda-33.16.3.26.orig/po/af.po anaconda-33.16.3.26/po/af.po +--- anaconda-33.16.3.26.orig/po/af.po 2020-10-28 10:16:09.973000000 -0700 ++++ anaconda-33.16.3.26/po/af.po 2020-10-28 10:16:30.355000000 -0700 +@@ -3599,7 +3599,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3607,8 +3607,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/am.po anaconda-33.16.3.26/po/am.po +--- anaconda-33.16.3.26.orig/po/am.po 2020-10-28 10:16:09.974000000 -0700 ++++ anaconda-33.16.3.26/po/am.po 2020-10-28 10:16:30.356000000 -0700 +@@ -3599,7 +3599,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3607,8 +3607,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/ar.po anaconda-33.16.3.26/po/ar.po +--- anaconda-33.16.3.26.orig/po/ar.po 2020-10-28 10:16:09.975000000 -0700 ++++ anaconda-33.16.3.26/po/ar.po 2020-10-28 10:16:30.358000000 -0700 +@@ -3764,7 +3764,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3772,8 +3772,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/as.po anaconda-33.16.3.26/po/as.po +--- anaconda-33.16.3.26.orig/po/as.po 2020-10-28 10:16:09.977000000 -0700 ++++ anaconda-33.16.3.26/po/as.po 2020-10-28 10:16:30.361000000 -0700 +@@ -3927,7 +3927,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3935,8 +3935,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/ast.po anaconda-33.16.3.26/po/ast.po +--- anaconda-33.16.3.26.orig/po/ast.po 2020-10-28 10:16:09.978000000 -0700 ++++ anaconda-33.16.3.26/po/ast.po 2020-10-28 10:16:30.362000000 -0700 +@@ -3603,7 +3603,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3611,8 +3611,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/be.po anaconda-33.16.3.26/po/be.po +--- anaconda-33.16.3.26.orig/po/be.po 2020-10-28 10:16:09.980000000 -0700 ++++ anaconda-33.16.3.26/po/be.po 2020-10-28 10:19:13.048000000 -0700 +@@ -4224,27 +4224,27 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "Тэхналогія шматпатокавасці (SMT) можа павялічыць прадукцыйнасць у некаторых " + "выпадках, але адкрывае некалькі шырока вядомых праблемаў бяспекі. Можна " + "адключыць SMT, але гэта можа пагоршыць прадукцыйнасць. Калі вы вырашылі " +-"пакінуць SMT уключаным, то прачытайце, калі ласка, https://red.ht/rhel-smt , " ++"пакінуць SMT уключаным, то прачытайце, калі ласка, https://almalinux.org , " + "каб зразумець патэнцыйныя рызыкі і даведацца, як можна іх зменшыць." + + #: pyanaconda/core/constants.py:189 + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "Тэхналогія шматпатокавасці (SMT) можа павялічыць прадукцыйнасць у некаторых " + "выпадках, але адкрывае некалькі шырока вядомых праблемаў бяспекі. Можна " + "адключыць SMT, але гэта можа пагоршыць прадукцыйнасць. Калі ласка, " +-"прачытайце https://red.ht/rhel-smt , каб зразумець патэнцыйныя рызыкі і " ++"прачытайце https://almalinux.org , каб зразумець патэнцыйныя рызыкі і " + "даведацца, як можна іх зменшыць." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/bg.po anaconda-33.16.3.26/po/bg.po +--- anaconda-33.16.3.26.orig/po/bg.po 2020-10-28 10:16:09.982000000 -0700 ++++ anaconda-33.16.3.26/po/bg.po 2020-10-28 10:16:30.366000000 -0700 +@@ -4066,7 +4066,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -4074,8 +4074,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/bn_IN.po anaconda-33.16.3.26/po/bn_IN.po +--- anaconda-33.16.3.26.orig/po/bn_IN.po 2020-10-28 10:16:09.984000000 -0700 ++++ anaconda-33.16.3.26/po/bn_IN.po 2020-10-28 10:16:30.367000000 -0700 +@@ -3951,7 +3951,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3959,8 +3959,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/bn.po anaconda-33.16.3.26/po/bn.po +--- anaconda-33.16.3.26.orig/po/bn.po 2020-10-28 10:16:09.985000000 -0700 ++++ anaconda-33.16.3.26/po/bn.po 2020-10-28 10:16:30.368000000 -0700 +@@ -3623,7 +3623,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3631,8 +3631,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/bo.po anaconda-33.16.3.26/po/bo.po +--- anaconda-33.16.3.26.orig/po/bo.po 2020-10-28 10:16:09.986000000 -0700 ++++ anaconda-33.16.3.26/po/bo.po 2020-10-28 10:16:30.369000000 -0700 +@@ -3595,7 +3595,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3603,8 +3603,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/bs.po anaconda-33.16.3.26/po/bs.po +--- anaconda-33.16.3.26.orig/po/bs.po 2020-10-28 10:16:09.987000000 -0700 ++++ anaconda-33.16.3.26/po/bs.po 2020-10-28 10:16:30.370000000 -0700 +@@ -3610,7 +3610,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3618,8 +3618,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/ca.po anaconda-33.16.3.26/po/ca.po +--- anaconda-33.16.3.26.orig/po/ca.po 2020-10-28 10:16:09.989000000 -0700 ++++ anaconda-33.16.3.26/po/ca.po 2020-10-28 10:16:30.371000000 -0700 +@@ -4202,7 +4202,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -4210,8 +4210,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/cs.po anaconda-33.16.3.26/po/cs.po +--- anaconda-33.16.3.26.orig/po/cs.po 2020-10-28 10:16:09.990000000 -0700 ++++ anaconda-33.16.3.26/po/cs.po 2020-10-28 10:20:39.958000000 -0700 +@@ -4017,13 +4017,13 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "Technologie Simultaneous Multithreading (SMT) může poskytnout zlepšení " + "výkonu pro určité pracovní zatížení, ale zavádí několik veřejně dostupných " + "bezpečnostních chyb. Máte možnost SMT zakázat, což může mít dopad na výkon. " +-"Pokud ponecháte SMT povoleno, přečtěte si prosím https://red.ht/rhel-smt pro " ++"Pokud ponecháte SMT povoleno, přečtěte si prosím https://almalinux.org pro " + "pochopení potenciálních rizik a seznámení se s dalšími způsoby, jak tato " + "rizika zmírnit." + +@@ -4031,14 +4031,14 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "Simultaneous Multithreading (SMT) může zlepšit výkon pro určité pracovní " + "zatížení, ale zavádí několik veřejně dostupných bezpečnostních chyb. Můžete " +-"SMT zakázat, což může mít dopad na výkon. Přečtěte si prosím https://red.ht/" +-"rhel-smt pro pochopení potenciálních rizik a seznámení se se způsoby, jak " ++"SMT zakázat, což může mít dopad na výkon. Přečtěte si prosím https://" ++"almalinux.org pro pochopení potenciálních rizik a seznámení se se způsoby, jak " + "tato rizika zmírnit." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/cy.po anaconda-33.16.3.26/po/cy.po +--- anaconda-33.16.3.26.orig/po/cy.po 2020-10-28 10:16:09.991000000 -0700 ++++ anaconda-33.16.3.26/po/cy.po 2020-10-28 10:16:30.373000000 -0700 +@@ -3607,7 +3607,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3615,8 +3615,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/da.po anaconda-33.16.3.26/po/da.po +--- anaconda-33.16.3.26.orig/po/da.po 2020-10-28 10:16:09.993000000 -0700 ++++ anaconda-33.16.3.26/po/da.po 2020-10-28 10:16:30.374000000 -0700 +@@ -4105,7 +4105,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -4113,8 +4113,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/de_CH.po anaconda-33.16.3.26/po/de_CH.po +--- anaconda-33.16.3.26.orig/po/de_CH.po 2020-10-28 10:16:09.994000000 -0700 ++++ anaconda-33.16.3.26/po/de_CH.po 2020-10-28 10:16:30.375000000 -0700 +@@ -3610,7 +3610,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3618,8 +3618,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/de.po anaconda-33.16.3.26/po/de.po +--- anaconda-33.16.3.26.orig/po/de.po 2020-10-28 10:16:09.996000000 -0700 ++++ anaconda-33.16.3.26/po/de.po 2020-10-28 10:21:56.818000000 -0700 +@@ -4203,14 +4203,14 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "Die simultane Multithreading (SMT)-Technologie kann die Leistung für " + "bestimmte Workloads verbessern, bringt aber mehrere, öffentlich bekannte " + "Sicherheitsrisiken mit sich. Sie haben die Möglichkeit, SMT zu deaktivieren, " + "was sich aber auf die Leistung auswirken kann. Wenn Sie SMT aktiviert lassen " +-"möchten, lesen Sie bitte https://red.ht/rhel-smt um die potenziellen Risiken " ++"möchten, lesen Sie bitte https://almalinux.org um die potenziellen Risiken " + "zu verstehen und andere Möglichkeiten kennenzulernen, wie die Risiken " + "verringert werden können." + +@@ -4218,14 +4218,14 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "Simultanes Multithreading (SMT) kann die Leistung für bestimmte Workloads " + "verbessern, bringt aber mehrere, öffentlich bekannte Sicherheitsprobleme mit " + "sich. Sie können SMT deaktivieren, was die Leistung beeinträchtigen kann. " +-"https://red.ht/rhel-smt informiert Sie über potenzielle Risiken und zeigt " ++"https://almalinux.org informiert Sie über potenzielle Risiken und zeigt " + "Ihnen, wie Sie diese Risiken minimieren können." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/el.po anaconda-33.16.3.26/po/el.po +--- anaconda-33.16.3.26.orig/po/el.po 2020-10-28 10:16:09.997000000 -0700 ++++ anaconda-33.16.3.26/po/el.po 2020-10-28 10:16:30.377000000 -0700 +@@ -3618,7 +3618,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3626,8 +3626,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/en_GB.po anaconda-33.16.3.26/po/en_GB.po +--- anaconda-33.16.3.26.orig/po/en_GB.po 2020-10-28 10:16:09.998000000 -0700 ++++ anaconda-33.16.3.26/po/en_GB.po 2020-10-28 10:16:30.378000000 -0700 +@@ -3615,7 +3615,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3623,8 +3623,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/es.po anaconda-33.16.3.26/po/es.po +--- anaconda-33.16.3.26.orig/po/es.po 2020-10-28 10:16:09.999000000 -0700 ++++ anaconda-33.16.3.26/po/es.po 2020-10-28 10:23:22.696000000 -0700 +@@ -4196,22 +4196,22 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "La tecnología de multihilo simultáneo (SMT) puede proporcionar mejoras de " + "rendimiento para determinadas cargas de trabajo, pero introduce varios " + "problemas de seguridad de divulgación pública. tiene la opción de " + "deshabilitar SMT, lo que puede afectar al rendimiento. si decide dejar " +-"habilitado SMT, lea https://red.ht/rhel-smt para comprender sus posibles " ++"habilitado SMT, lea https://almalinux.org para comprender sus posibles " + "riesgos y conocer otras formas de mitigarlos." + + #: pyanaconda/core/constants.py:189 + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "El multihilo simultáneo (SMT) puede mejorar el rendimiento de determinadas " +diff -ruN anaconda-33.16.3.26.orig/po/et.po anaconda-33.16.3.26/po/et.po +--- anaconda-33.16.3.26.orig/po/et.po 2020-10-28 10:16:10.001000000 -0700 ++++ anaconda-33.16.3.26/po/et.po 2020-10-28 10:16:30.380000000 -0700 +@@ -3640,7 +3640,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3648,8 +3648,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/eu.po anaconda-33.16.3.26/po/eu.po +--- anaconda-33.16.3.26.orig/po/eu.po 2020-10-28 10:16:10.002000000 -0700 ++++ anaconda-33.16.3.26/po/eu.po 2020-10-28 10:16:30.381000000 -0700 +@@ -3627,7 +3627,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3635,8 +3635,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/fa.po anaconda-33.16.3.26/po/fa.po +--- anaconda-33.16.3.26.orig/po/fa.po 2020-10-28 10:16:10.003000000 -0700 ++++ anaconda-33.16.3.26/po/fa.po 2020-10-28 10:16:30.382000000 -0700 +@@ -3632,7 +3632,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3640,8 +3640,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/fil.po anaconda-33.16.3.26/po/fil.po +--- anaconda-33.16.3.26.orig/po/fil.po 2020-10-28 10:16:10.004000000 -0700 ++++ anaconda-33.16.3.26/po/fil.po 2020-10-28 10:16:30.383000000 -0700 +@@ -3688,7 +3688,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3696,8 +3696,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/fi.po anaconda-33.16.3.26/po/fi.po +--- anaconda-33.16.3.26.orig/po/fi.po 2020-10-28 10:16:10.005000000 -0700 ++++ anaconda-33.16.3.26/po/fi.po 2020-10-28 10:16:30.384000000 -0700 +@@ -3932,7 +3932,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3940,8 +3940,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/fr.po anaconda-33.16.3.26/po/fr.po +--- anaconda-33.16.3.26.orig/po/fr.po 2020-10-28 10:16:10.006000000 -0700 ++++ anaconda-33.16.3.26/po/fr.po 2020-10-28 10:24:25.596000000 -0700 +@@ -4133,30 +4133,30 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "La technologie SMT (Simultaneous Multithreading) permet d'améliorer les " + "performances de certaines charges de travail, mais introduit plusieurs " + "problèmes de sécurité connus publiquement. Vous avez la possibilité de " + "désactiver SMT, ce qui peut avoir un impact sur les performances. Si vous " +-"choisissez de laisser l'option SMT activée, veuillez lire https://red.ht/" +-"rhel-smt pour comprendre vos risques potentiels et vous renseigner sur " ++"choisissez de laisser l'option SMT activée, veuillez lire https://" ++"almalinux.org pour comprendre vos risques potentiels et vous renseigner sur " + "d'autres façons d'atténuer ces risques." + + #: pyanaconda/core/constants.py:189 + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "La technologie SMT (Simultaneous Multithreading) permet d'améliorer la " + "performance de certaines charges de travail, mais introduit plusieurs " + "problèmes de sécurité connus publiquement. Vous avez la possibilité de " + "désactiver SMT, ce qui peut avoir un impact sur la performance. Veuillez " +-"lire https://red.ht/rhel-smt pour comprendre vos risques potentiels et vous " ++"lire https://almalinux.org pour comprendre vos risques potentiels et vous " + "renseigner sur d'autres façons d'atténuer ces risques." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/fur.po anaconda-33.16.3.26/po/fur.po +--- anaconda-33.16.3.26.orig/po/fur.po 2020-10-28 10:16:10.007000000 -0700 ++++ anaconda-33.16.3.26/po/fur.po 2020-10-28 10:25:31.721000000 -0700 +@@ -4013,28 +4013,28 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "La tecnologjie Multithreading Simultani (SMT) e pues dâ mioraments des " + "prestazions par cierts carics di lavôrs, ma al introdûs variis " + "problematichis di sigurece, za cognossudis. Tu puedis disabilitâ SMT ma a " + "discapit des prestazions. Se tu sielzis di lassâ abilitât SMT, par plasê lei " +-"https://red.ht/rhel-smt par capî i potenziâi risis e imparâ altris manieris " ++"https://almalinux.org par capî i potenziâi risis e imparâ altris manieris " + "par morestâ chescj pericui." + + #: pyanaconda/core/constants.py:189 + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "a tecnologjie Multithreading Simultani (SMT) e pues miorâ lis prestazions " + "par cierts carics di lavôrs, ma al introdûs variis problematichis di " + "sigurece, za cognossudis. Tu puedis disabilitâ SMT ma a discapit des " +-"prestazions. Par plasê lei https://red.ht/rhel-smt par capî i potenziâi " ++"prestazions. Par plasê lei https://almalinux.org par capî i potenziâi " + "risis e imparâ ce mût morestâ chescj pericui." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/ga.po anaconda-33.16.3.26/po/ga.po +--- anaconda-33.16.3.26.orig/po/ga.po 2020-10-28 10:16:10.008000000 -0700 ++++ anaconda-33.16.3.26/po/ga.po 2020-10-28 10:16:30.388000000 -0700 +@@ -3629,7 +3629,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3637,8 +3637,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/gl.po anaconda-33.16.3.26/po/gl.po +--- anaconda-33.16.3.26.orig/po/gl.po 2020-10-28 10:16:10.009000000 -0700 ++++ anaconda-33.16.3.26/po/gl.po 2020-10-28 10:16:30.388000000 -0700 +@@ -3794,7 +3794,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3802,8 +3802,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/gu.po anaconda-33.16.3.26/po/gu.po +--- anaconda-33.16.3.26.orig/po/gu.po 2020-10-28 10:16:10.010000000 -0700 ++++ anaconda-33.16.3.26/po/gu.po 2020-10-28 10:16:30.390000000 -0700 +@@ -3782,7 +3782,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3790,8 +3790,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/he.po anaconda-33.16.3.26/po/he.po +--- anaconda-33.16.3.26.orig/po/he.po 2020-10-28 10:16:10.011000000 -0700 ++++ anaconda-33.16.3.26/po/he.po 2020-10-28 10:16:30.391000000 -0700 +@@ -3894,7 +3894,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3902,8 +3902,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/hi.po anaconda-33.16.3.26/po/hi.po +--- anaconda-33.16.3.26.orig/po/hi.po 2020-10-28 10:16:10.012000000 -0700 ++++ anaconda-33.16.3.26/po/hi.po 2020-10-28 10:16:30.392000000 -0700 +@@ -3720,7 +3720,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3728,8 +3728,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/hr.po anaconda-33.16.3.26/po/hr.po +--- anaconda-33.16.3.26.orig/po/hr.po 2020-10-28 10:16:10.013000000 -0700 ++++ anaconda-33.16.3.26/po/hr.po 2020-10-28 10:26:41.106000000 -0700 +@@ -3982,28 +3982,28 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "Višezadaćnost (Simultaneous Multithreading - SMT) je tehnologija koja može " + "poboljšati učinkovitost pri određenim radnim opterećenjima, no uvodi " + "nekoliko javno objavljenih sigurnosnih problema. Možete onemogućiti SMT, što " + "može utjecati na učinkovitost rada. Ako ipak odlučite ostaviti omogućen SMT, " +-"molimo pročitajte https://red.ht/rhel-smt kako biste razumjeli potencijalne " ++"molimo pročitajte https://almalinux.org kako biste razumjeli potencijalne " + "opasnosti i saznali kako ublažiti spomenute opasnosti." + + #: pyanaconda/core/constants.py:189 + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "Višezadaćnost (Simultaneous Multithreading - SMT) može poboljšati " + "učinkovitost prilikom određenih radnih opterećenja, no uvodi nekoliko javno " + "objavljenih sigurnosnih problema. Možete onemogućiti SMT, što može utjecati " +-"na učinkovitost rada. Molimo pogledajte https://red.ht/rhel-smt kako biste " ++"na učinkovitost rada. Molimo pogledajte https://almalinux.org kako biste " + "razumjeli potencijalne opasnosti i saznali na koji način ih možete ublažiti." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/hu.po anaconda-33.16.3.26/po/hu.po +--- anaconda-33.16.3.26.orig/po/hu.po 2020-10-28 10:16:10.014000000 -0700 ++++ anaconda-33.16.3.26/po/hu.po 2020-10-28 10:27:34.088000000 -0700 +@@ -4020,7 +4020,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "Az egyidejű több szálas végrehajtási (SMT) technológia teljesítménybeli " +@@ -4029,14 +4029,14 @@ + "hatással lehet a teljesítményre. Ha úgy dönt, hogy engedélyezve hagyja az " + "SMT-t, akkor olvassa el a következő oldalt, hogy megértse a lehetséges " + "kockázatokat, és megismerje a kockázatok kezelésének egyéb módjait: https://" +-"red.ht/rhel-smt." ++"almalinux.org." + + #: pyanaconda/core/constants.py:189 + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "Az egyidejű több szálas végrehajtási (SMT) technológia teljesítménybeli " +@@ -4044,7 +4044,7 @@ + "biztonsági problémát is bevezet. Lehetősége van az SMT letiltására, amely " + "hatással lehet a teljesítményre. Olvassa el a következő oldalt, hogy " + "megértse a lehetséges kockázatokat, és megismerje a kockázatok kezelésének " +-"módjait: https://red.ht/rhel-smt." ++"módjait: https://almalinux.org." + + #: pyanaconda/core/constants.py:205 + msgid "The password is empty." +diff -ruN anaconda-33.16.3.26.orig/po/ia.po anaconda-33.16.3.26/po/ia.po +--- anaconda-33.16.3.26.orig/po/ia.po 2020-10-28 10:16:10.015000000 -0700 ++++ anaconda-33.16.3.26/po/ia.po 2020-10-28 10:16:30.395000000 -0700 +@@ -3788,7 +3788,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3796,8 +3796,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/id.po anaconda-33.16.3.26/po/id.po +--- anaconda-33.16.3.26.orig/po/id.po 2020-10-28 10:16:10.016000000 -0700 ++++ anaconda-33.16.3.26/po/id.po 2020-10-28 10:28:23.495000000 -0700 +@@ -4007,14 +4007,14 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "Teknologi Simultaneous Multithreading (SMT) dapat memberikan peningkatan " + "kinerja untuk beban kerja tertentu, tetapi memperkenalkan beberapa masalah " + "keamanan yang diungkapkan secara publik. Anda memiliki opsi untuk " + "menonaktifkan SMT, yang dapat memengaruhi kinerja. Jika Anda memilih untuk " +-"membiarkan SMT diaktifkan, harap baca https://red.ht/rhel-smt untuk memahami " ++"membiarkan SMT diaktifkan, harap baca https://almalinux.org untuk memahami " + "risiko potensial Anda dan pelajari tentang cara lain untuk mengurangi risiko " + "ini." + +@@ -4022,14 +4022,14 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "Simultaneous Multithreading (SMT) dapat meningkatkan kinerja untuk beban " + "kerja tertentu, tetapi memperkenalkan beberapa masalah keamanan yang " + "diungkapkan kepada publik. Anda dapat menonaktifkan SMT, yang dapat " +-"mempengaruhi kinerja. Harap baca https://red.ht/rhel-smt untuk memahami " ++"mempengaruhi kinerja. Harap baca https://almalinux.org untuk memahami " + "risiko potensial dan pelajari cara untuk mengurangi risiko ini." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/ilo.po anaconda-33.16.3.26/po/ilo.po +--- anaconda-33.16.3.26.orig/po/ilo.po 2020-10-28 10:16:10.017000000 -0700 ++++ anaconda-33.16.3.26/po/ilo.po 2020-10-28 10:16:30.398000000 -0700 +@@ -3600,7 +3600,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3608,8 +3608,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/is.po anaconda-33.16.3.26/po/is.po +--- anaconda-33.16.3.26.orig/po/is.po 2020-10-28 10:16:10.018000000 -0700 ++++ anaconda-33.16.3.26/po/is.po 2020-10-28 10:16:30.398000000 -0700 +@@ -3603,7 +3603,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3611,8 +3611,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/it.po anaconda-33.16.3.26/po/it.po +--- anaconda-33.16.3.26.orig/po/it.po 2020-10-28 10:16:10.019000000 -0700 ++++ anaconda-33.16.3.26/po/it.po 2020-10-28 10:29:50.910000000 -0700 +@@ -4160,28 +4160,28 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "La tecnologia Multithreading simultaneo (SMT) può fornire miglioramenti " + "delle prestazioni per determinati carichi di lavoro, ma introduce diversi " + "problemi di sicurezza resi pubblici. È possibile disattivare l'SMT, che può " + "avere un impatto sulle prestazioni. Se si sceglie di lasciare l'SMT " +-"abilitato, leggere https://red.ht/rhel-smt per comprendere i rischi " ++"abilitato, leggere https://almalinux.org per comprendere i rischi " + "potenziali e conoscere altri modi per mitigare questi rischi." + + #: pyanaconda/core/constants.py:189 + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "Il Multithreading simultaneo (SMT) può migliorare le prestazioni per certi " + "carichi di lavoro, ma introduce diverse questioni di sicurezza rese " + "pubbliche. È possibile disabilitare l'SMT, che può avere un impatto sulle " +-"prestazioni. Si prega di leggere https://red.ht/rhel-smt per comprendere i " ++"prestazioni. Si prega di leggere https://almalinux.org per comprendere i " + "rischi potenziali e conoscere i modi per mitigare questi rischi." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/ja.po anaconda-33.16.3.26/po/ja.po +--- anaconda-33.16.3.26.orig/po/ja.po 2020-10-28 10:16:10.020000000 -0700 ++++ anaconda-33.16.3.26/po/ja.po 2020-10-28 10:30:47.481000000 -0700 +@@ -4039,28 +4039,28 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "同時マルチスレッディング (SMT) 技術を使用すると、特定のワークロードではパ" + "フォーマンスが改善されますが、公開済みのセキュリティー問題がもたらされます。" + "SMT は無効にすることもできますが、その場合はパフォーマンスにマイナス影響が出" +-"る可能性があります。SMT を有効にしておく場合は、https://red.ht/rhel-smt の" ++"る可能性があります。SMT を有効にしておく場合は、https://almalinux.org の" + "アーティクルで、潜在的なリスクとこれらリスクの軽減方法を確認してください。" + + #: pyanaconda/core/constants.py:189 + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "同時マルチスレッディング (SMT) を使用すると、特定のワークロードではパフォーマ" + "ンスが改善されますが、公開済みのセキュリティー問題がもたらされます。SMT は無" + "効にすることもできますが、その場合はパフォーマンスにマイナス影響が出る可能性" +-"があります。潜在的なリスクとこれらリスクの軽減方法については、https://red.ht/" +-"rhel-smt のアーティクルを参照してください。" ++"があります。潜在的なリスクとこれらリスクの軽減方法については、https://" ++"almalinux.org のアーティクルを参照してください。" + + #: pyanaconda/core/constants.py:205 + msgid "The password is empty." +diff -ruN anaconda-33.16.3.26.orig/po/ka.po anaconda-33.16.3.26/po/ka.po +--- anaconda-33.16.3.26.orig/po/ka.po 2020-10-28 10:16:10.021000000 -0700 ++++ anaconda-33.16.3.26/po/ka.po 2020-10-28 10:16:30.402000000 -0700 +@@ -3640,7 +3640,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3648,8 +3648,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/kk.po anaconda-33.16.3.26/po/kk.po +--- anaconda-33.16.3.26.orig/po/kk.po 2020-10-28 10:16:10.023000000 -0700 ++++ anaconda-33.16.3.26/po/kk.po 2020-10-28 10:31:37.604000000 -0700 +@@ -3971,13 +3971,13 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "Бір уақыттағы көпағындық (SMT) технологиясы белгілі бір жұмыс жүктемесін " + "жақсартуға мүмкіндік береді, бірақ бірнеше ашық қауіпсіздік мәселелерін " + "әкеледі. Сізде SMT-ді өшіру мүмкіндігі бар, ол өнімділікке әсер етуі мүмкін. " +-"Егер сіз SMT-ді қалдыруды қаласаңыз, https://red.ht/rhel-smt веб-сайтына " ++"Егер сіз SMT-ді қалдыруды қаласаңыз, https://almalinux.org веб-сайтына " + "кіріп, мүмкін қауіптеріңізді түсініп, оларды азайтудың басқа жолдары туралы " + "біліңіз." + +@@ -3985,14 +3985,14 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "Бір уақыттағы көпағындық (SMT) белгілі бір жұмыс жүктемесін жақсартуы " + "мүмкін, бірақ қауіпсіздікке қатысты бірнеше ашық мәселелерді әкеледі. Сіз " + "SMT-ді өшіре аласыз, ол өнімділікке әсер етуі мүмкін. Мүмкін қауіптерді " +-"түсіну және оларды азайту жолдары туралы білу үшін https://red.ht/rhel-smt " ++"түсіну және оларды азайту жолдары туралы білу үшін https://almalinux.org " + "веб-сайтын оқып шығыңыз." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/km.po anaconda-33.16.3.26/po/km.po +--- anaconda-33.16.3.26.orig/po/km.po 2020-10-28 10:16:10.024000000 -0700 ++++ anaconda-33.16.3.26/po/km.po 2020-10-28 10:16:30.405000000 -0700 +@@ -3800,7 +3800,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3808,8 +3808,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/kn.po anaconda-33.16.3.26/po/kn.po +--- anaconda-33.16.3.26.orig/po/kn.po 2020-10-28 10:16:10.025000000 -0700 ++++ anaconda-33.16.3.26/po/kn.po 2020-10-28 10:16:30.406000000 -0700 +@@ -3889,7 +3889,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3897,8 +3897,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/ko.po anaconda-33.16.3.26/po/ko.po +--- anaconda-33.16.3.26.orig/po/ko.po 2020-10-28 10:16:10.026000000 -0700 ++++ anaconda-33.16.3.26/po/ko.po 2020-10-28 10:32:29.036000000 -0700 +@@ -3935,12 +3935,12 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "동시 멀티쓰레딩 (SMT)는 특성 워크 로드에서 성능을 향상시킵니다. 그러나 해당 " + "기능의 여러 보안 이슈가 발생되었습니다. 성능에 영향을 미치지만 SMT를 비활성화" +-"할 수 있습니다. SMT를 그대로 사용하기로 결정하였다면, https://red.ht/rhel-smt" ++"할 수 있습니다. SMT를 그대로 사용하기로 결정하였다면, https://almalinux.org" + "에서 잠재적인 위험에 대해서 이해하고 위험을 완화시킬 수 있는 방법에 대해서 알" + "아보시기 바랍니다." + +@@ -3948,13 +3948,13 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "동시 멀티쓰레딩 (SMT)는 특성 워크 로드에서 성능을 향상시킵니다. 그러나 해당 " + "기능의 여러 보안 이슈가 발생되었습니다. 성능에 영향을 미치지만 SMT를 비활성화" +-"할 수 있습니다. https://red.ht/rhel-smt에서 잠재적인 위험에 대해서 이해하고 " ++"할 수 있습니다. https://almalinux.org에서 잠재적인 위험에 대해서 이해하고 " + "위험을 완화시킬 수 있는 방법에 대해서 알아보시기 바랍니다." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/lt.po anaconda-33.16.3.26/po/lt.po +--- anaconda-33.16.3.26.orig/po/lt.po 2020-10-28 10:16:10.027000000 -0700 ++++ anaconda-33.16.3.26/po/lt.po 2020-10-28 10:16:30.408000000 -0700 +@@ -4128,7 +4128,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -4136,8 +4136,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/lv.po anaconda-33.16.3.26/po/lv.po +--- anaconda-33.16.3.26.orig/po/lv.po 2020-10-28 10:16:10.028000000 -0700 ++++ anaconda-33.16.3.26/po/lv.po 2020-10-28 10:16:30.409000000 -0700 +@@ -3621,7 +3621,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3629,8 +3629,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/mai.po anaconda-33.16.3.26/po/mai.po +--- anaconda-33.16.3.26.orig/po/mai.po 2020-10-28 10:16:10.029000000 -0700 ++++ anaconda-33.16.3.26/po/mai.po 2020-10-28 10:16:30.410000000 -0700 +@@ -3601,7 +3601,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3609,8 +3609,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/mk.po anaconda-33.16.3.26/po/mk.po +--- anaconda-33.16.3.26.orig/po/mk.po 2020-10-28 10:16:10.030000000 -0700 ++++ anaconda-33.16.3.26/po/mk.po 2020-10-28 10:16:30.411000000 -0700 +@@ -3604,7 +3604,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3612,8 +3612,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/ml.po anaconda-33.16.3.26/po/ml.po +--- anaconda-33.16.3.26.orig/po/ml.po 2020-10-28 10:16:10.031000000 -0700 ++++ anaconda-33.16.3.26/po/ml.po 2020-10-28 10:16:30.412000000 -0700 +@@ -3742,7 +3742,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3750,8 +3750,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/mr.po anaconda-33.16.3.26/po/mr.po +--- anaconda-33.16.3.26.orig/po/mr.po 2020-10-28 10:16:10.032000000 -0700 ++++ anaconda-33.16.3.26/po/mr.po 2020-10-28 10:16:30.413000000 -0700 +@@ -3771,7 +3771,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3779,8 +3779,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/ms.po anaconda-33.16.3.26/po/ms.po +--- anaconda-33.16.3.26.orig/po/ms.po 2020-10-28 10:16:10.033000000 -0700 ++++ anaconda-33.16.3.26/po/ms.po 2020-10-28 10:16:30.414000000 -0700 +@@ -3597,7 +3597,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3605,8 +3605,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/my.po anaconda-33.16.3.26/po/my.po +--- anaconda-33.16.3.26.orig/po/my.po 2020-10-28 10:16:10.034000000 -0700 ++++ anaconda-33.16.3.26/po/my.po 2020-10-28 10:16:30.415000000 -0700 +@@ -3623,7 +3623,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3631,8 +3631,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/nb.po anaconda-33.16.3.26/po/nb.po +--- anaconda-33.16.3.26.orig/po/nb.po 2020-10-28 10:16:10.035000000 -0700 ++++ anaconda-33.16.3.26/po/nb.po 2020-10-28 10:16:30.416000000 -0700 +@@ -3853,7 +3853,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3861,8 +3861,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/nds.po anaconda-33.16.3.26/po/nds.po +--- anaconda-33.16.3.26.orig/po/nds.po 2020-10-28 10:16:10.036000000 -0700 ++++ anaconda-33.16.3.26/po/nds.po 2020-10-28 10:16:30.416000000 -0700 +@@ -3600,7 +3600,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3608,8 +3608,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/ne.po anaconda-33.16.3.26/po/ne.po +--- anaconda-33.16.3.26.orig/po/ne.po 2020-10-28 10:16:10.037000000 -0700 ++++ anaconda-33.16.3.26/po/ne.po 2020-10-28 10:16:30.417000000 -0700 +@@ -3602,7 +3602,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3610,8 +3610,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/nl.po anaconda-33.16.3.26/po/nl.po +--- anaconda-33.16.3.26.orig/po/nl.po 2020-10-28 10:16:10.038000000 -0700 ++++ anaconda-33.16.3.26/po/nl.po 2020-10-28 10:16:30.418000000 -0700 +@@ -4044,14 +4044,14 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "Simultaneous Multithreading (SMT)-technologie kan prestatieverbeteringen " + "bieden voor bepaalde werkbelastingen, maar introduceert verschillende " + "openbaar gemaakte beveiligingsproblemen. Je kunt SMT uitschakelen, wat de " + "prestaties kan beïnvloeden. Als je ervoor kiest om SMT ingeschakeld te " +-"laten, lees dan https://red.ht/rhel-smt om je potentiële risico's te " ++"laten, lees dan https://almalinux.org om je potentiële risico's te " + "begrijpen en meer te weten te komen over andere manieren om deze risico's te " + "verminderen." + +@@ -4059,14 +4059,14 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "Simultaneous Multithreading (SMT) kan de prestaties voor bepaalde " + "werkbelastingen verbeteren, maar introduceert verschillende openbaar " + "gemaakte beveiligingsproblemen. Je kunt SMT uitschakelen, wat de prestaties " +-"kan beïnvloeden. Lees https://red.ht/rhel-smt om mogelijke risico's te " ++"kan beïnvloeden. Lees https://almalinux.org om mogelijke risico's te " + "begrijpen en meer te weten te komen over manieren om deze risico's te " + "verminderen." + +diff -ruN anaconda-33.16.3.26.orig/po/nn.po anaconda-33.16.3.26/po/nn.po +--- anaconda-33.16.3.26.orig/po/nn.po 2020-10-28 10:16:10.038000000 -0700 ++++ anaconda-33.16.3.26/po/nn.po 2020-10-28 10:16:30.419000000 -0700 +@@ -3612,7 +3612,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3620,8 +3620,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/nso.po anaconda-33.16.3.26/po/nso.po +--- anaconda-33.16.3.26.orig/po/nso.po 2020-10-28 10:16:10.039000000 -0700 ++++ anaconda-33.16.3.26/po/nso.po 2020-10-28 10:16:30.420000000 -0700 +@@ -3601,7 +3601,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3609,8 +3609,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/or.po anaconda-33.16.3.26/po/or.po +--- anaconda-33.16.3.26.orig/po/or.po 2020-10-28 10:16:10.040000000 -0700 ++++ anaconda-33.16.3.26/po/or.po 2020-10-28 10:16:30.421000000 -0700 +@@ -3745,7 +3745,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3753,8 +3753,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/pa.po anaconda-33.16.3.26/po/pa.po +--- anaconda-33.16.3.26.orig/po/pa.po 2020-10-28 10:16:10.042000000 -0700 ++++ anaconda-33.16.3.26/po/pa.po 2020-10-28 10:16:30.422000000 -0700 +@@ -3774,7 +3774,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3782,8 +3782,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/pl.po anaconda-33.16.3.26/po/pl.po +--- anaconda-33.16.3.26.orig/po/pl.po 2020-10-28 10:16:10.043000000 -0700 ++++ anaconda-33.16.3.26/po/pl.po 2020-10-28 10:33:23.279000000 -0700 +@@ -4046,28 +4046,28 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"https://almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "Technologia wielowątkowości współbieżnej (SMT) może zwiększyć wydajność " + "w pewnych zastosowaniach, ale powoduje kilka publicznie znanych problemów " + "z bezpieczeństwem. Dostępna jest możliwość wyłączenia SMT, co może wpłynąć " + "na wydajność. Jeśli wybrano działanie z włączonym SMT, to proszę przeczytać " +-"https://red.ht/rhel-smt, aby zrozumieć potencjalne zagrożenia i poznać inne " ++"https://https://almalinux.org, aby zrozumieć potencjalne zagrożenia i poznać inne " + "sposoby na ich zmniejszenie." + + #: pyanaconda/core/constants.py:189 + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"https://almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "Wielowątkowość współbieżna (SMT) może zwiększyć wydajność w pewnych " + "zastosowaniach, ale powoduje kilka publicznie znanych problemów " + "z bezpieczeństwem. Można ją wyłączyć, co może wpłynąć na wydajność. Proszę " +-"przeczytać https://red.ht/rhel-smt, aby zrozumieć potencjalne zagrożenia " ++"przeczytać https://https://almalinux.org, aby zrozumieć potencjalne zagrożenia " + "i poznać sposoby na ich zmniejszenie." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/pt_BR.po anaconda-33.16.3.26/po/pt_BR.po +--- anaconda-33.16.3.26.orig/po/pt_BR.po 2020-10-28 10:16:10.044000000 -0700 ++++ anaconda-33.16.3.26/po/pt_BR.po 2020-10-28 10:34:11.454000000 -0700 +@@ -4069,28 +4069,28 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "A tecnologia de multithreading simultâneo (SMT) pode fornecer melhorias de " + "desempenho para determinadas cargas de trabalho, mas introduz vários " + "problemas de segurança divulgados publicamente. Você tem a opção de " + "desativar o SMT, o que pode afetar o desempenho. Se você optar por deixar o " +-"SMT ativado, leia https://red.ht/rhel-smt para entender seus riscos " ++"SMT ativado, leia https://almalinux.org para entender seus riscos " + "potenciais e aprender sobre outras maneiras de mitigar esses riscos." + + #: pyanaconda/core/constants.py:189 + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "O Multithreading Simultâneo (SMT) pode melhorar o desempenho de determinadas " + "cargas de trabalho, mas apresenta vários problemas de segurança divulgados " + "publicamente. Você pode desativar o SMT, o que pode afetar o desempenho. " +-"Leia https://red.ht/rhel-smt para entender os riscos potenciais e aprender " ++"Leia https://almalinux.org para entender os riscos potenciais e aprender " + "sobre maneiras de mitigar esses riscos." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/pt.po anaconda-33.16.3.26/po/pt.po +--- anaconda-33.16.3.26.orig/po/pt.po 2020-10-28 10:16:10.045000000 -0700 ++++ anaconda-33.16.3.26/po/pt.po 2020-10-28 10:16:30.426000000 -0700 +@@ -3763,7 +3763,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3771,8 +3771,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/ro.po anaconda-33.16.3.26/po/ro.po +--- anaconda-33.16.3.26.orig/po/ro.po 2020-10-28 10:16:10.046000000 -0700 ++++ anaconda-33.16.3.26/po/ro.po 2020-10-28 10:16:30.427000000 -0700 +@@ -4132,7 +4132,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -4140,8 +4140,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/ru.po anaconda-33.16.3.26/po/ru.po +--- anaconda-33.16.3.26.orig/po/ru.po 2020-10-28 10:16:10.047000000 -0700 ++++ anaconda-33.16.3.26/po/ru.po 2020-10-28 10:35:12.142000000 -0700 +@@ -4024,28 +4024,28 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "Технология одновременной многопоточности (SMT) может обеспечить повышение " + "производительности при определенных рабочих нагрузках, но привносит " + "несколько известных проблем безопасности. Вы можете отключить SMT, что может " + "повлиять на производительность. Если вы решите оставить SMT включенным, " +-"прочитайте https://red.ht/rhel-smt для понимания потенциальных рисков и " ++"прочитайте https://almalinux.org для понимания потенциальных рисков и " + "чтобы узнать о других способах снижения этих рисков." + + #: pyanaconda/core/constants.py:189 + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "Одновременная многопоточность (SMT) может увеличить производительность при " + "определенных рабочих нагрузках, но привносит несколько известных проблем " + "безопасности. Можно отключить SMT, что может повлиять на производительность. " +-"Прочитайте https://red.ht/rhel-smt для понимания потенциальных рисков и " ++"Прочитайте https://almalinux.org для понимания потенциальных рисков и " + "чтобы узнать о способах снижения этих рисков." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/si.po anaconda-33.16.3.26/po/si.po +--- anaconda-33.16.3.26.orig/po/si.po 2020-10-28 10:16:10.048000000 -0700 ++++ anaconda-33.16.3.26/po/si.po 2020-10-28 10:16:30.429000000 -0700 +@@ -3612,7 +3612,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3620,8 +3620,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/sk.po anaconda-33.16.3.26/po/sk.po +--- anaconda-33.16.3.26.orig/po/sk.po 2020-10-28 10:16:10.049000000 -0700 ++++ anaconda-33.16.3.26/po/sk.po 2020-10-28 10:35:55.966000000 -0700 +@@ -4001,13 +4001,13 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "Technológia Simultaneous Multithreading (SMT) môže poskytnúť zlepšenie " + "výkonu pre určité pracovné úlohy, ale zavádza niekoľko verejne dostupných " + "bezpečnostných chýb. Máte možnosť SMT zakázať, čo však môže mať dopad na " +-"výkon. Ak ponecháte SMT povolené, prečítajte si prosím https://red.ht/rhel-" ++"výkon. Ak ponecháte SMT povolené, prečítajte si prosím https://almalinux.org" + "smt pre pochopenie potenciálnych rizík a zoznámenie sa s ďalšími spôsobmi, " + "ako znížiť tieto riziká." + +@@ -4015,14 +4015,14 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "Simultaneous Multithreading (SMT) môže zlepšiť výkon pre určité pracovné " + "úlohy, ale zavádza niekoľko verejne dostupných bezpečnostných chýb. Máte " + "možnosť SMT zakázať, čo však môže mať dopad na výkon. Prečítajte si prosím " +-"https://red.ht/rhel-smt pre pochopenie potenciálnych rizík a zoznámenie sa s " ++"https://almalinux.org pre pochopenie potenciálnych rizík a zoznámenie sa s " + "ďalšími spôsobmi, ako znížiť tieto riziká." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/sl.po anaconda-33.16.3.26/po/sl.po +--- anaconda-33.16.3.26.orig/po/sl.po 2020-10-28 10:16:10.050000000 -0700 ++++ anaconda-33.16.3.26/po/sl.po 2020-10-28 10:16:30.431000000 -0700 +@@ -3612,7 +3612,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3620,8 +3620,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/sq.po anaconda-33.16.3.26/po/sq.po +--- anaconda-33.16.3.26.orig/po/sq.po 2020-10-28 10:16:10.051000000 -0700 ++++ anaconda-33.16.3.26/po/sq.po 2020-10-28 10:16:30.432000000 -0700 +@@ -4087,7 +4087,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -4095,8 +4095,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/sr@latin.po anaconda-33.16.3.26/po/sr@latin.po +--- anaconda-33.16.3.26.orig/po/sr@latin.po 2020-10-28 10:16:10.052000000 -0700 ++++ anaconda-33.16.3.26/po/sr@latin.po 2020-10-28 10:16:30.433000000 -0700 +@@ -3603,7 +3603,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3611,8 +3611,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/sr.po anaconda-33.16.3.26/po/sr.po +--- anaconda-33.16.3.26.orig/po/sr.po 2020-10-28 10:16:10.053000000 -0700 ++++ anaconda-33.16.3.26/po/sr.po 2020-10-28 10:16:30.434000000 -0700 +@@ -4033,7 +4033,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -4041,8 +4041,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/sv.po anaconda-33.16.3.26/po/sv.po +--- anaconda-33.16.3.26.orig/po/sv.po 2020-10-28 10:16:10.054000000 -0700 ++++ anaconda-33.16.3.26/po/sv.po 2020-10-28 10:37:43.823000000 -0700 +@@ -4080,28 +4080,28 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "Tekniken för samtidig multitrådning (Simultaneous Multithreading, SMT) kan " + "ge prestandaförbättringar för vissa arbetslaster, men introducerar flera " + "allmänt kända säkerhetsproblem. Du har möjligheten att avaktivera SMT, " + "vilken kan påverka prestandan. Om du väljer att låta SMT vara aktiverat, läs " +-"https://red.ht/rhel-smt för att förstå de potentiella riskerna och få reda " ++"https://almalinux.org för att förstå de potentiella riskerna och få reda " + "på andra sätt att begränsa dessa risker." + + #: pyanaconda/core/constants.py:189 + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "Samtidig multitrådning (Simultaneous Multithreading, SMT) kan förbättra " + "prestandan för vissa arbetslaster, men introducerar flera allmänt kända " + "säkerhetsproblem. Du kan avaktivera SMT, vilken kan påverka prestandan. Läs " +-"https://red.ht/rhel-smt för att förstå de potentiella riskerna och få reda " ++"https://almalinux.org för att förstå de potentiella riskerna och få reda " + "på sätt att begränsa dessa risker." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/ta.po anaconda-33.16.3.26/po/ta.po +--- anaconda-33.16.3.26.orig/po/ta.po 2020-10-28 10:16:10.056000000 -0700 ++++ anaconda-33.16.3.26/po/ta.po 2020-10-28 10:16:30.437000000 -0700 +@@ -3944,7 +3944,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3952,8 +3952,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/te.po anaconda-33.16.3.26/po/te.po +--- anaconda-33.16.3.26.orig/po/te.po 2020-10-28 10:16:10.057000000 -0700 ++++ anaconda-33.16.3.26/po/te.po 2020-10-28 10:16:30.438000000 -0700 +@@ -3733,7 +3733,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3741,8 +3741,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/tg.po anaconda-33.16.3.26/po/tg.po +--- anaconda-33.16.3.26.orig/po/tg.po 2020-10-28 10:16:10.058000000 -0700 ++++ anaconda-33.16.3.26/po/tg.po 2020-10-28 10:16:30.439000000 -0700 +@@ -3599,7 +3599,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3607,8 +3607,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/th.po anaconda-33.16.3.26/po/th.po +--- anaconda-33.16.3.26.orig/po/th.po 2020-10-28 10:16:10.059000000 -0700 ++++ anaconda-33.16.3.26/po/th.po 2020-10-28 10:16:30.440000000 -0700 +@@ -3652,7 +3652,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3660,8 +3660,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/tr.po anaconda-33.16.3.26/po/tr.po +--- anaconda-33.16.3.26.orig/po/tr.po 2020-10-28 10:16:10.060000000 -0700 ++++ anaconda-33.16.3.26/po/tr.po 2020-10-28 10:39:14.416000000 -0700 +@@ -3991,7 +3991,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "Eş Zamanlı Çoklu Kullanım (Simultaneous Multithreading - SMT) teknolojisi, " +@@ -3999,15 +3999,15 @@ + "kamuya açıklanmış birkaç güvenlik sorunu ortaya çıkarır. SMT'yi devre dışı " + "bırakma seçeneğiniz vardır, bu performansı etkileyebilir. SMT'yi etkin " + "bırakmayı seçerseniz, potansiyel risklerinizi anlamak ve bu riskleri " +-"azaltmanın diğer yollarını öğrenmek için lütfen https://red.ht/rhel-smt " ++"azaltmanın diğer yollarını öğrenmek için lütfen https://almalinux.org " + "sayfasını okuyun." + + #: pyanaconda/core/constants.py:189 + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "Eş Zamanlı Çoklu Kullanım (Simultaneous Multithreading - SMT), belirli iş " +@@ -4015,7 +4015,7 @@ + "açıklanmış birkaç güvenlik sorunu ortaya çıkarır. SMT'yi devre dışı " + "bırakabilirsiniz, bu performansı etkileyebilir. Potansiyel risklerinizi " + "anlamak ve bu riskleri azaltmanın diğer yollarını öğrenmek için lütfen " +-"https://red.ht/rhel-smt sayfasını okuyun." ++"https://almalinux.org sayfasını okuyun." + + #: pyanaconda/core/constants.py:205 + msgid "The password is empty." +diff -ruN anaconda-33.16.3.26.orig/po/uk.po anaconda-33.16.3.26/po/uk.po +--- anaconda-33.16.3.26.orig/po/uk.po 2020-10-28 10:16:10.061000000 -0700 ++++ anaconda-33.16.3.26/po/uk.po 2020-10-28 10:40:06.807000000 -0700 +@@ -4052,14 +4052,14 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "Технологія паралельної багатопотокової обробки даних (SMT) може пришвидшити " + "роботу комп'ютера під час виконання деяких завдань, однак її реалізовано із " + "декількома загальновідомими вадами у захисті даних. Ви можете вимкнути SMT, " + "що може призвести до зниження швидкодії. Якщо ви не вимикатимете SMT, будь " +-"ласка, ознайомтеся із https://red.ht/rhel-smt , щоб краще розуміти " ++"ласка, ознайомтеся із https://almalinux.org , щоб краще розуміти " + "потенційні проблеми та дізнатися про інші способи зменшення загрози від цих " + "проблем." + +@@ -4067,15 +4067,15 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "Технологія паралельної багатопотокової обробки даних (SMT) може пришвидшити " + "роботу комп'ютера під час виконання деяких завдань, однак її реалізовано із " + "декількома загальновідомими вадами у захисті даних. Ви можете вимкнути SMT, " + "що може призвести до зниження швидкодії. Будь ласка, ознайомтеся із https://" +-"red.ht/rhel-smt , щоб краще розуміти потенційні проблеми та дізнатися про " ++"almalinux.org , щоб краще розуміти потенційні проблеми та дізнатися про " + "інші способи зменшення загрози від цих проблем." + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/ur.po anaconda-33.16.3.26/po/ur.po +--- anaconda-33.16.3.26.orig/po/ur.po 2020-10-28 10:16:10.062000000 -0700 ++++ anaconda-33.16.3.26/po/ur.po 2020-10-28 10:16:30.444000000 -0700 +@@ -3602,7 +3602,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3610,8 +3610,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/vi.po anaconda-33.16.3.26/po/vi.po +--- anaconda-33.16.3.26.orig/po/vi.po 2020-10-28 10:16:10.063000000 -0700 ++++ anaconda-33.16.3.26/po/vi.po 2020-10-28 10:16:30.444000000 -0700 +@@ -3596,7 +3596,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3604,8 +3604,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/zh_CN.po anaconda-33.16.3.26/po/zh_CN.po +--- anaconda-33.16.3.26.orig/po/zh_CN.po 2020-10-28 10:16:10.064000000 -0700 ++++ anaconda-33.16.3.26/po/zh_CN.po 2020-10-28 10:40:58.756000000 -0700 +@@ -3832,24 +3832,24 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "同步多线程(SMT)技术可以为某些工作负载提供性能改进,但也有几个已知的安全问" + "题。您可以选择禁用 SMT,但这可能会对性能造成一些影响。如果选择启用 SMT,请参" +-"阅 https://red.ht/rhel-smt 以了解相关的潜在风险,以及如何缓解这些风险。" ++"阅 https://almalinux.org 以了解相关的潜在风险,以及如何缓解这些风险。" + + #: pyanaconda/core/constants.py:189 + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "同步多线程(SMT)技术可以为某些工作负载提供性能改进,但也有几个已知的安全问" + "题。您可以选择禁用 SMT,但这可能会对性能造成一些影响。如果选择启用 SMT,请参" +-"阅 https://red.ht/rhel-smt 以了解相关的潜在风险,以及如何缓解这些风险。" ++"阅 https://almalinux.org 以了解相关的潜在风险,以及如何缓解这些风险。" + + #: pyanaconda/core/constants.py:205 + msgid "The password is empty." +diff -ruN anaconda-33.16.3.26.orig/po/zh_HK.po anaconda-33.16.3.26/po/zh_HK.po +--- anaconda-33.16.3.26.orig/po/zh_HK.po 2020-10-28 10:16:10.065000000 -0700 ++++ anaconda-33.16.3.26/po/zh_HK.po 2020-10-28 10:16:30.447000000 -0700 +@@ -3654,7 +3654,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3662,8 +3662,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/po/zh_TW.po anaconda-33.16.3.26/po/zh_TW.po +--- anaconda-33.16.3.26.orig/po/zh_TW.po 2020-10-28 10:16:10.066000000 -0700 ++++ anaconda-33.16.3.26/po/zh_TW.po 2020-10-28 10:41:41.257000000 -0700 +@@ -3829,23 +3829,23 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + "同步多線程(SMT)技術可以為某些工作負載提供性能改進,但會引入一些公開披露的安" + "全問題。您可以選擇禁用SMT,這可能會影響性能。如果您選擇啟用SMT,請閱讀" +-"https://red.ht/rhel-smt以了解您的潛在風險並了解其他減輕這些風險的方法。" ++"https://almalinux.org以了解您的潛在風險並了解其他減輕這些風險的方法。" + + #: pyanaconda/core/constants.py:189 + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://" ++"almalinux.org to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + "同時多線程(SMT)可以提高某些工作負載的性能,但會引入一些公開披露的安全問題。" +-"您可以禁用SMT,這可能會影響性能。請閱讀https://red.ht/rhel-smt以了解潛在風險" ++"您可以禁用SMT,這可能會影響性能。請閱讀https://almalinux.org以了解潛在風險" + "並了解減輕這些風險的方法。" + + #: pyanaconda/core/constants.py:205 +diff -ruN anaconda-33.16.3.26.orig/po/zu.po anaconda-33.16.3.26/po/zu.po +--- anaconda-33.16.3.26.orig/po/zu.po 2020-10-28 10:16:10.067000000 -0700 ++++ anaconda-33.16.3.26/po/zu.po 2020-10-28 10:16:30.449000000 -0700 +@@ -3601,7 +3601,7 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which may " + "impact performance. If you choose to leave SMT enabled, please read https://" +-"red.ht/rhel-smt to understand your potential risks and learn about other " ++"almalinux.org to understand your potential risks and learn about other " + "ways to mitigate these risks." + msgstr "" + +@@ -3609,8 +3609,8 @@ + msgid "" + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. You " +-"can disable SMT, which may impact performance. Please read https://red.ht/" +-"rhel-smt to understand potential risks and learn about ways to mitigate " ++"can disable SMT, which may impact performance. Please read https://almalinux.org" ++" to understand potential risks and learn about ways to mitigate " + "these risks." + msgstr "" + +diff -ruN anaconda-33.16.3.26.orig/pyanaconda/core/constants.py anaconda-33.16.3.26/pyanaconda/core/constants.py +--- anaconda-33.16.3.26.orig/pyanaconda/core/constants.py 2020-10-28 10:16:10.067000000 -0700 ++++ anaconda-33.16.3.26/pyanaconda/core/constants.py 2020-10-28 10:16:30.449000000 -0700 +@@ -180,8 +180,8 @@ + "improvements for certain workloads, but introduces several publicly " + "disclosed security issues. You have the option of disabling SMT, which " + "may impact performance. If you choose to leave SMT enabled, please read " +- "https://red.ht/rhel-smt to understand your potential risks and learn " +- "about other ways to mitigate these risks." ++ "https://almalinux.org to understand your potential risks and learn " ++ "about other ways to mitigate these risks." + ) + + # This message is shorter to fit on the screen. +@@ -189,8 +190,8 @@ + "Simultaneous Multithreading (SMT) may improve performance for certain " + "workloads, but introduces several publicly disclosed security issues. " + "You can disable SMT, which may impact performance. Please read " +- "https://red.ht/rhel-smt to understand potential risks and learn about " +- "ways to mitigate these risks." ++ "https://almalinux.org to understand potential risks and learn about " ++ "ways to mitigate these risks." + ) + + diff --git a/SPECS/anaconda.spec b/SPECS/anaconda.spec index 6031d9e..6d4a5d4 100644 --- a/SPECS/anaconda.spec +++ b/SPECS/anaconda.spec @@ -1,3 +1,5 @@ +%global dist %{?dist}.alma.2 + Summary: Graphical system installer Name: anaconda Version: 33.16.4.15 @@ -11,6 +13,16 @@ URL: http://fedoraproject.org/wiki/Anaconda # ./autogen.sh # make dist Source0: %{name}-%{version}.tar.bz2 +# AlmaLinux install class +Source1: almalinux.conf + +# AlmaLinux +Patch1000: anaconda-almalinux-installer-colors.patch +Patch1001: anaconda-almalinux-disable-subscription.patch +Patch1002: anaconda-almalinux-disable-cdn-radiobutton.patch +Patch1003: anaconda-almalinux-remove-visible-rh-references.patch +# Patch1004: anaconda-almalinux-update-smt-url.patch +Patch1005: anaconda-almalinux-baseos-repo-default.patch # Versions of required components (done so we make sure the buildrequires # match the requires versions of things). @@ -101,10 +113,6 @@ Requires: python3-systemd Requires: python3-productmd Requires: python3-dasbus >= %{dasbusver} Requires: flatpak-libs -%if 0%{?rhel} -Requires: python3-syspurpose -Requires: subscription-manager >= 1.26 -%endif # pwquality only "recommends" the dictionaries it needs to do anything useful, # which is apparently great for containers but unhelpful for the rest of us @@ -265,6 +273,13 @@ runtime on NFS/HTTP/FTP servers or local disks. %prep %autosetup -p 1 +# AlmaLinux install class +cp %{SOURCE1} data/product.d/ + +# Debrand +sed -e 's/RHEL/AlmaLinux/g' -i po/*.po +sed -e 's/Red Hat Enterprise Linux/AlmaLinux/g' -i po/*.po + %build # use actual build-time release number, not tarball creation time release number %configure ANACONDA_RELEASE=%{release} @@ -367,6 +382,9 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d %{_prefix}/libexec/anaconda/dd_* %changelog +* Wed May 19 2021 Andrew Lukoshko - 33.16.4.15-1.alma +- AlmaLinux changes + * Wed Mar 24 2021 Radek Vykydal - 33.16.4.15-1 - network: clone connections from intramfs to persistent config (rvykydal) Resolves: rhbz#1910438 @@ -630,6 +648,9 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d - Propagate verify_ssl to RHSM (mkolman) Resolves: rhbz#1858126 +* Wed Aug 19 2020 Diana Bautina - 33.16.3.10-1.cloudlinux +- apply rebrending for CloudLinux + * Wed Aug 12 2020 Radek Vykydal - 33.16.3.18-1 - subscription: Only restart payload when needed (mkolman) Resolves: rhbz#1861351 @@ -733,6 +754,9 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d - Fix software spoke message when source changes (mkolman) Resolves: rhbz#1788458 +* Tue Jun 30 2020 Sergey Fokin - 29.19.2.17-1.cloudlinux.1 +- disable Red Hat subscription menu + * Mon Jun 29 2020 Radek Vykydal - 33.16.3.10-1 - Fix RHSM HTTP proxy configuration crash in the GUI (mkolman) Resolves: rhbz#1849792 @@ -889,6 +913,9 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d - Remove unused imports (vslavik) Related: rhbz#1691319 +* Tue May 26 2020 Diana Bautina - 29.19.2.17-1.cloudlinux +- apply rebrending for CloudLinux + * Mon May 25 2020 Radek Vykydal - 33.16.3.1-1 - Change git branch configuration (jkonecny) Related: rhbz#1805757 @@ -994,6 +1021,9 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d - Fix branding in the Connect to Red Hat spoke (mkolman) Resolves: rhbz#1787342 +* Tue Dec 24 2019 Sergey Fokin - 29.19.1.13-1.cloudlinux +- apply rebrending for CloudLinux + * Fri Dec 13 2019 Radek Vykydal - 29.19.2.6-1 - Fix RHSM HTTP proxy setup (mkolman) Related: rhbz#1748281