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.
anaconda/SOURCES/0006-Add-MSVSphere-product-...

70 lines
1.7 KiB

From 9fb4b8b7e4e6a995da947d93718eb945b8f1bc30 Mon Sep 17 00:00:00 2001
From: tigro <tigro@msvsphere-os.ru>
Date: Tue, 24 Dec 2024 14:45:34 +0300
Subject: [PATCH] Add MSVSphere product config
---
data/profile.d/Makefile.am | 1 +
data/profile.d/Makefile.in | 1 +
data/profile.d/msvsphere.conf | 24 ++++++++++++++++++++++++
3 files changed, 26 insertions(+)
create mode 100644 data/profile.d/msvsphere.conf
diff --git a/data/profile.d/Makefile.am b/data/profile.d/Makefile.am
index 2f1dbd9..643a236 100644
--- a/data/profile.d/Makefile.am
+++ b/data/profile.d/Makefile.am
@@ -30,6 +30,7 @@ dist_config_DATA = \
fedora-silverblue.conf \
fedora-workstation.conf \
fedora.conf \
+ msvsphere.conf \
ovirt.conf \
rhel.conf \
rhvh.conf \
diff --git a/data/profile.d/Makefile.in b/data/profile.d/Makefile.in
index d9911fd..e891c84 100644
--- a/data/profile.d/Makefile.in
+++ b/data/profile.d/Makefile.in
@@ -328,6 +328,7 @@ dist_config_DATA = \
fedora-silverblue.conf \
fedora-workstation.conf \
fedora.conf \
+ msvsphere.conf \
ovirt.conf \
rhel.conf \
rhvh.conf \
diff --git a/data/profile.d/msvsphere.conf b/data/profile.d/msvsphere.conf
new file mode 100644
index 0000000..6f4ac7e
--- /dev/null
+++ b/data/profile.d/msvsphere.conf
@@ -0,0 +1,24 @@
+# Anaconda configuration file for MSVSphere.
+
+[Profile]
+# Define the profile.
+profile_id = msvsphere
+base_profile = rhel
+
+[Profile Detection]
+# Match os-release values.
+os_id = msvsphere
+
+[Anaconda]
+forbidden_modules =
+ org.fedoraproject.Anaconda.Modules.Subscription
+
+[Bootloader]
+efi_dir = msvsphere
+
+[Payload]
+enable_closest_mirror = True
+default_source = CLOSEST_MIRROR
+
+[License]
+eula = /usr/share/msvsphere-release/EULA
--
2.47.1