Kickstart install module conflict error

Latest response

Hi Good day.
I am trying to install Redhat satellite server using kickstart file.
I have combined Redhat satellite packages and Linux packages in a single iso file.
If I create a local repo server using this iso file i can install Redhat satellite without any issue. I am not getting any error.

If I try to install using kickstart file I am getting attached error.

I am getting that becuase of "@satellite:el8" in package section.

Satellite package will work during yum install If I enable "dnf module enable satellite:el8"

In kickstart file I don't know how to enable yum module. I tried ""@satellite:el8" package section because of that I am getting that error.

If anyone have any idea, please help me to solve the issue.

This is my ks.cfg file.

#version=RHEL8
# Use graphical install
graphical

repo --name="AppStream" --baseurl=file:///run/install/sources/mount-0000-cdrom/AppStream
repo --name="Maintenance" --baseurl=file:///run/install/sources/mount-0000-cdrom/Maintenance
repo --name="Satellite" --baseurl=file:///run/install/sources/mount-0000-cdrom/Satellite

%packages --multilib --ignoremissing
@^graphical-server-environment
@file-server
@ftp-server
@guest-agents
@smb-server
@system-tools
@satellite:el8
%end

KS Error

Update 1

Below is the updated ks.cfg file

repo --name="AppStream" --baseurl=file:///run/install/sources/mount-0000-cdrom/AppStream
repo --name="Maintenance" --baseurl=file:///run/install/sources/mount-0000-cdrom/Maintenance
repo --name="Satellite" --baseurl=file:///run/install/sources/mount-0000-cdrom/Satellite

module --name=satellite --stream=el8
module --name=postgresql --stream=12
module --name=ruby --stream=2.7

%packages
@^minimal-environment
@file-server
@ftp-server
@guest-agents
@smb-server
@system-tools
satellite
%end

After changing ks.cfg file installation started, but at the end I am getting this error now.

Yum Error

Yum Error2

Responses