Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

feat: include workstation-product-environment in all images #11

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions scripts/_base/001-desktop-environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@

set -euox pipefail

excludes=()
excludes=(
"@gnome-desktop"
)

# Make excludes a comma-separated string
excludes=$(IFS=, ; echo "${excludes[*]}")

# Install the base-graphical meta-package
dnf install -y @base-graphical \
dnf install -y @base-graphical @workstation-product-environment \
--exclude "${excludes}"
Loading