For a task, I need to prepare an offline installation for an isolated environment. Therefore, I downloaded Rocky-9-3-x86_64-dvd.iso and prepared a custome kickstart file.
Now, I need to figure out where to place my newly created RPM. To give you an idea, the Rocky directory tree looks like this:
tree
.
├── AppStream
│ ├── Packages
│ │ ├── 3
│ │ │ ├── 389-ds-base-2.3.6-3.el9_3.x86_64.rpm
│ │ │ └── 389-ds-base-libs-2.3.6-3.el9_3.x86_64.rpm
│ │ ├── a
│ │ │ ├── a52dec-0.7.4-42.el9.x86_64.rpm
…
│ └── repodata
│ ├── 0e0e0252-80d4-47bf-bb11-1f97d7aac5b0-PRIMARY.xml.gz
│ ├── 216f3c4b35699fa9e71ccd4c7e0b7bb443a225af1ffbadda56883c5b553c83a5-primary.sqlite.gz
│ ├── 5a7d07744ad46174a9555561ec10ab9faf86c177bb149efb75e01d3b9eae3fb7-other.sqlite.gz
│ ├── a99be84840c72203bcce01e8ff632f8512569df3d2c48a94a5ae19ef66a05054-filelists.sqlite.gz
│ ├── d40daa02-667d-4b19-9e55-a79451f2edf7-FILELISTS.xml.gz
│ ├── d40daa02-667d-4b19-9e55-a79451f2edf7-GROUPS.xml
│ ├── d40daa02-667d-4b19-9e55-a79451f2edf7-GROUPS.xml.gz
│ ├── d40daa02-667d-4b19-9e55-a79451f2edf7-OTHER.xml.gz
│ ├── d9675e6d-d2b8-46d4-977f-de7f2e7fe6f1-UPDATEINFO.xml.gz
│ ├── repomd.xml
│ └── repomd.xml.asc
├── EFI
│ └── BOOT
│ ├── BOOTX64.EFI
│ ├── fonts
│ │ └── unicode.pf2
│ ├── grub.cfg
│ ├── grubx64.efi
│ └── mmx64.efi
├── images
│ ├── efiboot.img
│ ├── install.img
│ └── pxeboot
│ ├── initrd.img
│ └── vmlinuz
├── isolinux
│ ├── boot.cat
│ ├── boot.msg
│ ├── grub.conf
│ ├── initrd.img
│ ├── isolinux.bin
│ ├── isolinux.cfg
│ ├── ldlinux.c32
│ ├── libcom32.c32
│ ├── libutil.c32
│ ├── memtest
│ ├── splash.png
│ ├── vesamenu.c32
│ └── vmlinuz
├── LICENSE
└── media.repo
After placing my RPM, do I need to make modifications to any files? For the kickstart, is it enough to just put the package name under %package?
thank you for support