kickstart/isocreate.ks

50 lines
1.7 KiB
Plaintext
Raw Normal View History

2024-10-24 04:31:31 +02:00
# We do not want SELinux
2024-10-31 11:04:25 +01:00
selinux --disabled
2024-10-24 04:31:31 +02:00
# Services to activate
2024-10-24 09:07:49 +02:00
services --enabled=NetworkManager
2024-10-24 04:31:31 +02:00
services --disabled=lm_sensors
# Default root pass, will be changed in post-install process anyway
rootpw --lock
user --name=installer --uid=9999
# Accept EULA
eula --agreed
# Disable kdump
%addon com_redhat_kdump --disable
%end
# Start network
2024-10-24 09:07:49 +02:00
network --bootproto=dhcp
2024-10-24 04:31:31 +02:00
2024-10-24 04:53:10 +02:00
# Install from ??
2024-10-24 06:17:18 +02:00
url --url=https://koji.koozali.org/kojifiles/repos-dist/smeserver11/latest/$basearch
2024-10-24 04:31:31 +02:00
# Add netinstall repos
#this one gives curl 6 errors on netinstall while added manually works from time to time
#url --mirrorlist https://mirrorlist.koozali.org/mirrorlist/smeos-11-x86_64
2024-10-24 04:53:10 +02:00
repo --name=smeos --baseurl=https://koji.koozali.org/kojifiles/repos-dist/smeserver11/latest/$basearch
url --url=https://koji.koozali.org/kojifiles/repos-dist/smeserver11/latest/$basearch
repo --name=rocky8base --baseurl=https://dl.rockylinux.org/pub/rocky/8/BaseOS/$basearch/os/
url --url=https://dl.rockylinux.org/pub/rocky/8/BaseOS/$basearch/os/
repo --name=rocky8app --baseurl=https://dl.rockylinux.org/pub/rocky/8/AppStream/$basearch/os/
url --url=https://dl.rockylinux.org/pub/rocky/8/AppStream/$basearch/os/
repo --name=epel8 --baseurl=https://muug.ca/mirror/fedora-epel/8/Everything/$basearch/
url --url=https://muug.ca/mirror/fedora-epel/8/Everything/$basearch/
2024-10-31 11:04:25 +01:00
repo --name=remisafe --baseurl=http://rpms.remirepo.net/enterprise/8/safe/x86_64/
url --url=http://rpms.remirepo.net/enterprise/8/safe/x86_64/
2024-10-24 04:31:31 +02:00
#repo --name=smeos --mirrorlist https://mirrorlist.koozali.org/mirrorlist/smeos-11-x86_64
#repo --name=smeupdates --mirrorlist https://mirrorlist.koozali.org/mirrorlist/smeupdates-11-x86_64
# Packages to install
%packages
dracut-live
@^minimal
@base
@core
-chrony
-kexec-tools
%end