Add workstation XML

This commit is contained in:
Louis Abel 2024-04-01 17:38:37 -07:00
parent 386a8fa0e1
commit 8743e07f38
Signed by: label
GPG Key ID: 2A6975660E424560
7 changed files with 131 additions and 5 deletions

View File

@ -7,14 +7,14 @@
<packages type="iso" patternType="plusRecommended" profiles="Live-Base">
<namedCollection name="anaconda-tools"/>
<namedCollection name="base-x"/>
<namedCollection name="guest-desktop-agents"/>
<namedCollection name="standard"/>
<namedCollection name="core"/>
<namedCollection name="fonts"/>
<namedCollection name="input-methods"/>
<namedCollection name="dial-up"/>
<namedCollection name="multimedia"/>
<namedCollection name="fonts"/>
<namedCollection name="guest-desktop-agents"/>
<namedCollection name="hardware-support"/>
<namedCollection name="input-methods"/>
<namedCollection name="multimedia"/>
<namedCollection name="standard"/>
<!-- SB -->
<package name="shim-x64" arch="x86_64"/>
<package name="shim-aa64" arch="aarch64"/>

View File

@ -0,0 +1,22 @@
<image>
<profiles>
<profile name="Workstation-Lite-Desktop" description="Workstation-Lite Desktop">
<requires profile="Live-Base"/>
</profile>
</profiles>
<preferences profiles="Live-Base">
<type image="iso" publisher="Rocky Enterprise Software Foundation" volid="Rocky-ZZVOLVERZZ-Workstation-Lite" primary="true" flags="dmsquash" firmware="uefi" kernelcmdline="quiet rhgb" mediacheck="false">
<bootloader name="grub2" grub_template="grub.tmpl" console="console" timeout="10"/>
</type>
</preferences>
<packages type="image" patternType="plusRecommended" profiles="Workstation-Lite-Desktop">
<namedCollection name="gnome-desktop"/>
<namedCollection name="internet-browser"/>
<namedCollection name="networkmanager-submodules"/>
<package name="libreoffice-calc"/>
<package name="libreoffice-writer"/>
<!-- ignores for space and other things -->
<ignore name="gfs2-utils"/>
<ignore name="reiserfs-utils"/>
</packages>
</image>

View File

@ -0,0 +1,26 @@
<image>
<profiles>
<profile name="Workstation-Desktop" description="Workstation Desktop">
<requires profile="Live-Base"/>
</profile>
</profiles>
<preferences profiles="Live-Base">
<type image="iso" publisher="Rocky Enterprise Software Foundation" volid="Rocky-ZZVOLVERZZ-Workstation" primary="true" flags="dmsquash" firmware="uefi" kernelcmdline="quiet rhgb" mediacheck="false">
<bootloader name="grub2" grub_template="grub.tmpl" console="console" timeout="10"/>
</type>
</preferences>
<packages type="image" patternType="plusRecommended" profiles="Workstation-Desktop">
<namedCollection name="gnome-desktop"/>
<namedCollection name="internet-browser"/>
<namedCollection name="networkmanager-submodules"/>
<namedCollection name="workstation-product"/>
<package name="libreoffice-calc"/>
<package name="libreoffice-emailmerge" arch="x86_64"/>
<package name="libreoffice-graphicfilter"/>
<package name="libreoffice-impress"/>
<package name="libreoffice-writer"/>
<!-- ignores for space and other things -->
<ignore name="gfs2-utils"/>
<ignore name="reiserfs-utils"/>
</packages>
</image>

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<image schemaversion="7.4" name="Rocky-ZZVERZZ-Workstation-Lite" displayname="Rocky Linux Workstation-Lite ZZVERZZ">
<description type="system">
<author>Release Engineering (SIG/Core)</author>
<contact>releng@rockylinux.org</contact>
<specification>Rocky Linux</specification>
</description>
<preferences>
<version>9</version>
<packagemanager>dnf</packagemanager>
<locale>en_US</locale>
<keytable>us</keytable>
<timezone>UTC</timezone>
<release-version>9</release-version>
</preferences>
<include from="this://./repositories/core.xml"/>
<include from="this://./repositories/epel.xml"/>
<include from="this://./components/boot.xml"/>
<include from="this://./components/users.xml"/>
<include from="this://./components/live/common.xml"/>
<include from="this://./components/live/workstation-lite.xml"/>
<include from="this://./live/workstation-lite.xml"/>
<packages type="bootstrap">
<package name="basesystem"/>
<package name="filesystem"/>
</packages>
</image>

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<image schemaversion="7.4" name="Rocky-ZZVERZZ-Workstation" displayname="Rocky Linux Workstation ZZVERZZ">
<description type="system">
<author>Release Engineering (SIG/Core)</author>
<contact>releng@rockylinux.org</contact>
<specification>Rocky Linux</specification>
</description>
<preferences>
<version>9</version>
<packagemanager>dnf</packagemanager>
<locale>en_US</locale>
<keytable>us</keytable>
<timezone>UTC</timezone>
<release-version>9</release-version>
</preferences>
<include from="this://./repositories/core.xml"/>
<include from="this://./repositories/epel.xml"/>
<include from="this://./components/boot.xml"/>
<include from="this://./components/users.xml"/>
<include from="this://./components/live/common.xml"/>
<include from="this://./components/live/workstation.xml"/>
<include from="this://./live/workstation.xml"/>
<packages type="bootstrap">
<package name="basesystem"/>
<package name="filesystem"/>
</packages>
</image>

11
live/workstation-lite.xml Normal file
View File

@ -0,0 +1,11 @@
<image>
<profiles>
<profile name="Workstation-Lite-Live" description="Rocky Linux Workstation-Lite">
<requires profile="Live-Base"/>
<requires profile="Workstation-Lite-Desktop"/>
</profile>
</profiles>
<packages type="bootstrap" patternType="plusRecommended" profiles="Workstation-Lite-Live">
<package name="rocky-release"/>
</packages>
</image>

11
live/workstation.xml Normal file
View File

@ -0,0 +1,11 @@
<image>
<profiles>
<profile name="Workstation-Live" description="Rocky Linux Workstation">
<requires profile="Live-Base"/>
<requires profile="Workstation-Desktop"/>
</profile>
</profiles>
<packages type="bootstrap" patternType="plusRecommended" profiles="Workstation-Live">
<package name="rocky-release"/>
</packages>
</image>