From 3d18962160c087ec412600f2be9fcb2d28e626d4 Mon Sep 17 00:00:00 2001 From: Sandwich Date: Wed, 5 Feb 2025 00:02:37 +0100 Subject: [PATCH] Include Standard package group for RHEL systems --- roles/bootstrap/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/bootstrap/tasks/main.yml b/roles/bootstrap/tasks/main.yml index 323e46a..f16081f 100644 --- a/roles/bootstrap/tasks/main.yml +++ b/roles/bootstrap/tasks/main.yml @@ -78,7 +78,7 @@ dnf --releasever={{ '8' if os == 'rhel8' else '9' }} --repo={{ os | lower }}-baseos --installroot=/mnt --setopt=install_weak_deps=False --setopt=optional_metadata_types=filelists - groupinstall -y base core + groupinstall -y core base standard changed_when: result.rc == 0 register: result