Compare commits
No commits in common. 'i10-beta' and 'i9' have entirely different histories.
@ -1 +1 @@
|
||||
737e60e285c648e553fbe6cdf23b42f253752d4a SOURCES/anaconda-40.22.3.19.tar.bz2
|
||||
71620d2ed3ce54558da0cb8d49cac48fa89d3a7a SOURCES/anaconda-34.25.4.9.tar.bz2
|
||||
|
@ -1 +1 @@
|
||||
SOURCES/anaconda-40.22.3.19.tar.bz2
|
||||
SOURCES/anaconda-34.25.4.9.tar.bz2
|
||||
|
@ -1,37 +1,29 @@
|
||||
From d9fe80cb2d797a077d604d8f9a69ceaf5167e51b Mon Sep 17 00:00:00 2001
|
||||
From: Sergey Cherevko <sergey.cherevko@softline.com>
|
||||
Date: Thu, 19 Dec 2024 21:13:04 +0300
|
||||
From d78fb7d96c772f00ce4b35f4f9209b2d629c27e0 Mon Sep 17 00:00:00 2001
|
||||
From: Eugene Zamriy <eugene@zamriy.info>
|
||||
Date: Fri, 14 Apr 2023 12:56:19 +0300
|
||||
Subject: [PATCH 03/15] Set MSVSphere installer colors
|
||||
|
||||
---
|
||||
data/anaconda-gtk.css | 5 +++--
|
||||
1 file changed, 3 insertions(+), 2 deletions(-)
|
||||
data/anaconda-gtk.css | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/data/anaconda-gtk.css b/data/anaconda-gtk.css
|
||||
index f83cf15..ef557ee 100644
|
||||
index 516df62..ef6d79d 100644
|
||||
--- a/data/anaconda-gtk.css
|
||||
+++ b/data/anaconda-gtk.css
|
||||
@@ -96,9 +96,10 @@ infobar.error box {
|
||||
*/
|
||||
@@ -92,10 +92,11 @@ infobar.error box {
|
||||
|
||||
@define-color anaconda_bg_color #2f4265;
|
||||
@define-color redhat #2d2d2d;
|
||||
@define-color fedora #2f4265;
|
||||
+@define-color msvsphere #343434;
|
||||
|
||||
.logo-sidebar {
|
||||
- background-color: @anaconda_bg_color;
|
||||
+ background-color: @msvsphere;
|
||||
}
|
||||
/* theme colors/images */
|
||||
|
||||
/* This is a placeholder to be filled by a product-specific logo. */
|
||||
@@ -114,7 +115,7 @@ infobar.error box {
|
||||
}
|
||||
-@define-color product_bg_color @fedora;
|
||||
+@define-color product_bg_color @msvsphere;
|
||||
|
||||
AnacondaSpokeWindow #nav-box {
|
||||
- background-color: @anaconda_bg_color;
|
||||
+ background-color: @msvsphere;
|
||||
color: white;
|
||||
}
|
||||
/* logo and sidebar classes */
|
||||
|
||||
--
|
||||
2.43.5
|
||||
2.44.0
|
||||
|
||||
|
@ -1,26 +1,27 @@
|
||||
From 390568b415c06b3c129bbb122f5eb103e88e4080 Mon Sep 17 00:00:00 2001
|
||||
From: Sergey Cherevko <s.cherevko@msvsphere-os.ru>
|
||||
Date: Thu, 19 Dec 2024 21:19:04 +0300
|
||||
From 18fcf71d53a8c476c55076f8a0e8db0904a51670 Mon Sep 17 00:00:00 2001
|
||||
From: Eugene Zamriy <evgeniy.zamriy@softline.com>
|
||||
Date: Fri, 28 Jul 2023 23:47:23 +0300
|
||||
Subject: [PATCH 04/15] Add Minimal and Server repository support
|
||||
|
||||
---
|
||||
pyanaconda/core/constants.py | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
pyanaconda/core/constants.py | 4 +++-
|
||||
1 file changed, 3 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/pyanaconda/core/constants.py b/pyanaconda/core/constants.py
|
||||
index 5232e6d..3d0b56d 100644
|
||||
index 1496f8c..72a9d39 100644
|
||||
--- a/pyanaconda/core/constants.py
|
||||
+++ b/pyanaconda/core/constants.py
|
||||
@@ -58,6 +58,9 @@ DEFAULT_REPOS = [
|
||||
@@ -58,7 +58,9 @@ DEFAULT_REPOS = [productName.split('-')[0].lower(),
|
||||
"fedora-modular-server",
|
||||
"rawhide",
|
||||
"BaseOS", # Used by RHEL
|
||||
"baseos", # Used by CentOS Stream
|
||||
"eln-baseos", # Used by Fedora ELN
|
||||
- "baseos"] # Used by CentOS Stream
|
||||
+ "baseos", # Used by CentOS Stream
|
||||
+ "Server", # Used by MSVSphere
|
||||
+ "Certified", # Used by MSVSphere Certified
|
||||
+ "Minimal", # Used by MSVSphere
|
||||
]
|
||||
+ "Minimal"] # Used by MSVSphere
|
||||
|
||||
DBUS_ANACONDA_SESSION_ADDRESS = "DBUS_ANACONDA_SESSION_BUS_ADDRESS"
|
||||
|
||||
--
|
||||
2.43.5
|
||||
2.44.0
|
||||
|
||||
|
@ -1,26 +1,50 @@
|
||||
From 76b2065edce9b4e3f3b9fab80ce04ad35f096a61 Mon Sep 17 00:00:00 2001
|
||||
From: Sergey Cherevko <s.cherevko@msvsphere-os.ru>
|
||||
Date: Thu, 19 Dec 2024 21:38:09 +0300
|
||||
From 60ffb83455ecba7fccef1044e7eb17b55c589c44 Mon Sep 17 00:00:00 2001
|
||||
From: Eugene Zamriy <eugene@zamriy.info>
|
||||
Date: Wed, 19 Apr 2023 12:06:57 +0300
|
||||
Subject: [PATCH 10/15] Set English as fallback language for help
|
||||
|
||||
---
|
||||
pyanaconda/core/constants.py | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
pyanaconda/core/constants.py | 4 ++++
|
||||
pyanaconda/ui/lib/help.py | 4 ++--
|
||||
2 files changed, 6 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/pyanaconda/core/constants.py b/pyanaconda/core/constants.py
|
||||
index e2f5d1a..9698270 100644
|
||||
index 84b03e3..b7c2e5e 100644
|
||||
--- a/pyanaconda/core/constants.py
|
||||
+++ b/pyanaconda/core/constants.py
|
||||
@@ -79,6 +79,9 @@ BACKEND_READY_FLAG_FILE = "/run/anaconda/backend_ready"
|
||||
|
||||
@@ -74,6 +74,10 @@ ANACONDA_CONFIG_TMP = "/run/anaconda/anaconda.conf"
|
||||
# NOTE: this should be LANG_TERRITORY.CODESET, e.g. en_US.UTF-8
|
||||
DEFAULT_LANG = "ru_RU.UTF-8"
|
||||
|
||||
+# NOTE: MSVSphere change, set English as a fallback help language because
|
||||
+# we use Russian by default for UI
|
||||
+DEFAULT_HELP_LANG = "en_US.UTF-8"
|
||||
|
||||
+
|
||||
DEFAULT_VC_FONT = "eurlatgr"
|
||||
|
||||
DEFAULT_KEYBOARD = "us"
|
||||
diff --git a/pyanaconda/ui/lib/help.py b/pyanaconda/ui/lib/help.py
|
||||
index 271e587..b8f424d 100644
|
||||
--- a/pyanaconda/ui/lib/help.py
|
||||
+++ b/pyanaconda/ui/lib/help.py
|
||||
@@ -25,7 +25,7 @@ from collections import namedtuple
|
||||
|
||||
from pyanaconda.anaconda_loggers import get_module_logger
|
||||
from pyanaconda.core.configuration.anaconda import conf
|
||||
-from pyanaconda.core.constants import DEFAULT_LANG, DisplayModes
|
||||
+from pyanaconda.core.constants import DEFAULT_HELP_LANG, DisplayModes
|
||||
from pyanaconda.core.util import startProgram, join_paths
|
||||
from pyanaconda.localization import find_best_locale_match
|
||||
|
||||
@@ -224,7 +224,7 @@ def _find_best_help_file(current_locale, available_files):
|
||||
:param dict available_files: a dictionary of langcodes and help paths
|
||||
:return str: a path to the best help file or None
|
||||
"""
|
||||
- for locale in (current_locale, DEFAULT_LANG):
|
||||
+ for locale in (current_locale, DEFAULT_HELP_LANG):
|
||||
best_lang = find_best_locale_match(locale, available_files.keys())
|
||||
best_path = available_files.get(best_lang, None)
|
||||
|
||||
--
|
||||
2.43.5
|
||||
2.44.0
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,25 +1,40 @@
|
||||
From f39bc62bdbf2fe663d53d19454b2c5c4f42b71b5 Mon Sep 17 00:00:00 2001
|
||||
From d89d1e6358188e8f3f3f595cc8af4d90dd78987e Mon Sep 17 00:00:00 2001
|
||||
From: tigro <tigro@msvsphere-os.ru>
|
||||
Date: Wed, 3 Apr 2024 10:12:41 +0300
|
||||
Subject: [PATCH 12/15] Enable administrator by default
|
||||
|
||||
---
|
||||
pyanaconda/ui/lib/users.py | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
pyanaconda/ui/gui/spokes/user.glade | 1 +
|
||||
pyanaconda/ui/lib/users.py | 4 +++-
|
||||
2 files changed, 4 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/pyanaconda/ui/gui/spokes/user.glade b/pyanaconda/ui/gui/spokes/user.glade
|
||||
index 3d52a93..c070066 100644
|
||||
--- a/pyanaconda/ui/gui/spokes/user.glade
|
||||
+++ b/pyanaconda/ui/gui/spokes/user.glade
|
||||
@@ -267,6 +267,7 @@
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="receives-default">False</property>
|
||||
+ <property name="active">True</property>
|
||||
<property name="tooltip-text" translatable="yes" context="GUI|User">Allow this user to run the 'sudo' command.</property>
|
||||
<property name="use-underline">True</property>
|
||||
<property name="xalign">0</property>
|
||||
diff --git a/pyanaconda/ui/lib/users.py b/pyanaconda/ui/lib/users.py
|
||||
index 9475075..08d96db 100644
|
||||
index 2ea6a6f..a0cc1ec 100644
|
||||
--- a/pyanaconda/ui/lib/users.py
|
||||
+++ b/pyanaconda/ui/lib/users.py
|
||||
@@ -79,6 +79,8 @@ def get_user_list(users_module, add_default=False, add_if_not_empty=False):
|
||||
@@ -79,7 +79,9 @@ def get_user_list(users_module, add_default=False, add_if_not_empty=False):
|
||||
# we only add default user to an empty list, to add default user to
|
||||
# a populated list the add_if_not_empty option needs to be used
|
||||
if not user_data_list or add_if_not_empty:
|
||||
- user_data_list.insert(0, UserData())
|
||||
+ data = UserData()
|
||||
+ data.set_admin_priviledges(True)
|
||||
data = UserData()
|
||||
data.set_admin_priviledges(True)
|
||||
user_data_list.insert(0, data)
|
||||
+ user_data_list.insert(0, data)
|
||||
|
||||
return user_data_list
|
||||
|
||||
--
|
||||
2.43.5
|
||||
2.44.0
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,34 +0,0 @@
|
||||
From 74dacc06bd34591593b34add271f452a07d72b61 Mon Sep 17 00:00:00 2001
|
||||
From: tigro <tigro@msvsphere-os.ru>
|
||||
Date: Tue, 22 Oct 2024 17:29:08 +0300
|
||||
Subject: [PATCH 15/15] Change docs site
|
||||
|
||||
---
|
||||
pyanaconda/core/constants.py | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/pyanaconda/core/constants.py b/pyanaconda/core/constants.py
|
||||
index 23614af..0e1156f 100644
|
||||
--- a/pyanaconda/core/constants.py
|
||||
+++ b/pyanaconda/core/constants.py
|
||||
@@ -168,7 +168,7 @@ WARNING_SMT_ENABLED_GUI = N_(
|
||||
"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 "
|
||||
+ "https://docs.msvsphere-os.ru/knowledge-base/security/smt.html to understand your potential risks and learn "
|
||||
"about other ways to mitigate these risks."
|
||||
)
|
||||
|
||||
@@ -177,7 +177,7 @@ WARNING_SMT_ENABLED_TUI = N_(
|
||||
"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 "
|
||||
+ "https://docs.msvsphere-os.ru/knowledge-base/security/smt.html to understand potential risks and learn about "
|
||||
"ways to mitigate these risks."
|
||||
)
|
||||
|
||||
--
|
||||
2.43.5
|
||||
|
@ -1,26 +1,25 @@
|
||||
From 52378334637cfba5e35a38d1bb0e1476273709d2 Mon Sep 17 00:00:00 2001
|
||||
From: Sergey Cherevko <sergey.cherevko@softline.com>
|
||||
Date: Fri, 20 Dec 2024 00:19:31 +0300
|
||||
Subject: [PATCH 13/15] Set latarcyrheb-sun16 as default font instead of
|
||||
eurlatgr
|
||||
From b9fe4624a8f34bac765fd2788abebfec429cc0a2 Mon Sep 17 00:00:00 2001
|
||||
From: tigro <tigro@msvsphere-os.ru>
|
||||
Date: Mon, 12 Aug 2024 12:29:06 +0300
|
||||
Subject: [PATCH 16/16] Set LatGrkCyr-8x16 as default font instead of eurlatgr
|
||||
|
||||
---
|
||||
pyanaconda/core/constants.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/pyanaconda/core/constants.py b/pyanaconda/core/constants.py
|
||||
index 9698270..23614af 100644
|
||||
index 78577cb..0bd5227 100644
|
||||
--- a/pyanaconda/core/constants.py
|
||||
+++ b/pyanaconda/core/constants.py
|
||||
@@ -83,7 +83,7 @@ DEFAULT_LANG = "ru_RU.UTF-8"
|
||||
@@ -78,7 +78,7 @@ DEFAULT_LANG = "ru_RU.UTF-8"
|
||||
# we use Russian by default for UI
|
||||
DEFAULT_HELP_LANG = "en_US.UTF-8"
|
||||
|
||||
-DEFAULT_VC_FONT = "eurlatgr"
|
||||
+DEFAULT_VC_FONT = "latarcyrheb-sun16"
|
||||
+DEFAULT_VC_FONT = "LatGrkCyr-8x16"
|
||||
|
||||
DEFAULT_KEYBOARD = "us"
|
||||
|
||||
--
|
||||
2.43.5
|
||||
2.46.0
|
||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue