You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
980 B
28 lines
980 B
11 months ago
|
From cc4c5543889a79108e072d23676895b072009363 Mon Sep 17 00:00:00 2001
|
||
|
From: tigro <tigro@msvsphere-os.ru>
|
||
|
Date: Tue, 19 Dec 2023 11:28:41 +0300
|
||
|
Subject: [PATCH 04/11] Add Minimal and Server repository support
|
||
|
|
||
|
---
|
||
|
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 0ab2627..bcc5270 100644
|
||
|
--- a/pyanaconda/core/constants.py
|
||
|
+++ b/pyanaconda/core/constants.py
|
||
|
@@ -61,7 +61,9 @@ DEFAULT_REPOS = [productName.split('-')[0].lower(),
|
||
|
"fedora-modular-server",
|
||
|
"rawhide",
|
||
|
"BaseOS", # Used by RHEL
|
||
|
- "baseos"] # Used by CentOS Stream
|
||
|
+ "baseos", # Used by CentOS Stream
|
||
|
+ "Server", # Used by MSVSphere
|
||
|
+ "Minimal"] # Used by MSVSphere
|
||
|
|
||
|
# Get list of repo names which should be used as updates repos
|
||
|
DEFAULT_UPDATE_REPOS = ["updates",
|
||
|
--
|
||
|
2.43.0
|
||
|
|