Reorganize fragments: flat structure from fragments/shared/ and fragments/platform/

This commit is contained in:
Lukas Greve
2026-03-25 19:40:07 +01:00
parent 520657dcee
commit 0843127d6a
70 changed files with 266 additions and 267 deletions
+9
View File
@@ -0,0 +1,9 @@
# Core post-installation configuration
%post --log=/mnt/sysimage/root/post.log # Beginning of the post-installation section. Log all messages to a given file
localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked.
dnf update -y # Update the system
grub2-mkconfig -o /boot/grub2/grub.cfg # Unsure it is actually useful
%end # End of the %post section
+5
View File
@@ -0,0 +1,5 @@
# Post-installation no-chroot section
%post --nochroot --log=/mnt/sysimage/root/post-nochroot.log # Beginning of the post-installation section. Log all messages to a given file
%end # End of the %post section
+1
View File
@@ -0,0 +1 @@
# Server-specific post-install tasks
+5
View File
@@ -0,0 +1,5 @@
# Pre-installation kickstart section
%pre --log=/mnt/sysimage/root/pre.log Beginning of the pre section. Log all messages to a given file
%end # End of the %post section
+5
View File
@@ -0,0 +1,5 @@
# Pre-installation kickstart section
%pre --log=/mnt/sysimage/root/pre-install.log Beginning of the pre-installation section. Log all messages to a given file
%end # End of the %post section