Kickstarts, livemedia-creator: Error in PREIN scriptlet in rpm package rpcbind

Hi, I build a basic KDE spin (fedora-live-kde.ks)with --releasever 41 and get the error “Error in PREIN scriptlet in rpm package rpcbind”, if I also build on rawhide (modified in fedora-repo.ks) everything is ok. Have you encountered this?
The sequence of actions when building:
0. I added the %post section, but I also tried it on pure fedora-live-kde.ks.

  1. sudo ksflatten -c fedora-live-kde.ks -o kde.ks
  2. sudo livemedia-creator --make-iso --ks kde.ks --no-virt --iso-only --iso-name fedora-kde.iso --releasever 41 --variant KDE
  3. If you specify “%include fedora-repo-rawhide.ks” in fedora-repo.ks, everything builds. If “%include fedora-repo-not-rawhide.ks” is specified, it does not.
    my kde.ks
cat kde.ks 
# Generated by pykickstart v3.58
#version=DEVEL
# Firewall configuration
firewall --enabled --service=mdns
# Keyboard layouts
keyboard 'us'
# System language
lang en_US.UTF-8
# Network information
network  --bootproto=dhcp --device=link --activate
# Shutdown after installation
shutdown
repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
# Root password
rootpw --iscrypted --lock locked
# SELinux configuration
selinux --enforcing
# System services
services --disabled="sshd" --enabled="NetworkManager,ModemManager"
# System timezone
timezone US/Eastern
# Use network installation
url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch"
# X Window System configuration information
xconfig  --startxonboot
# System bootloader configuration
bootloader --location=none
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all
# Disk partitioning information
part / --fstype="ext4" --size=5120
part / --size=9000

%post
# Enable livesys services
systemctl enable livesys.service
systemctl enable livesys-late.service

# enable tmpfs for /tmp
systemctl enable tmp.mount

# make it so that we don't do writing to the overlay for things which
# are just tmpdirs/caches
# note https://bugzilla.redhat.com/show_bug.cgi?id=1135475
cat >> /etc/fstab << EOF
vartmp   /var/tmp    tmpfs   defaults   0  0
EOF

# work around for poor key import UI in PackageKit
rm -f /var/lib/rpm/__db*
echo "Packages within this LiveCD"
rpm -qa --qf '%{size}\t%{name}-%{version}-%{release}.%{arch}\n' |sort -rn
# Note that running rpm recreates the rpm db files which aren't needed or wanted
rm -f /var/lib/rpm/__db*

# go ahead and pre-make the man -k cache (#455968)
/usr/bin/mandb

# make sure there aren't core files lying around
rm -f /core*

# remove random seed, the newly installed instance should make it's own
rm -f /var/lib/systemd/random-seed

# convince readahead not to collect
# FIXME: for systemd

echo 'File created by kickstart. See systemd-update-done.service(8).' \
    | tee /etc/.updated >/var/.updated

# Drop the rescue kernel and initramfs, we don't need them on the live media itself.
# See bug 1317709
rm -f /boot/*-rescue*

# Disable network service here, as doing it in the services line
# fails due to RHBZ #1369794
systemctl disable network

# Remove machine-id on pre generated images
rm -f /etc/machine-id
touch /etc/machine-id

%end

%post

# set default GTK+ theme for root (see #683855, #689070, #808062)
cat > /root/.gtkrc-2.0 << EOF
include "/usr/share/themes/Adwaita/gtk-2.0/gtkrc"
include "/etc/gtk-2.0/gtkrc"
gtk-theme-name="Adwaita"
EOF
mkdir -p /root/.config/gtk-3.0
cat > /root/.config/gtk-3.0/settings.ini << EOF
[Settings]
gtk-theme-name = Adwaita
EOF

# set livesys session type
sed -i 's/^livesys_session=.*/livesys_session="kde"/' /etc/sysconfig/livesys

%end

%post
dnf install -y https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
dnf install -y https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
dnf in -y @multimedia @sound-and-video --allowerasing
dnf in -y ffmpeg-libs --allowerasing
rm -f /etc/yum.repos.d/fedora-cisco-openh264.repo
dnf up -y
wget -O /tmp/rustdesk.rpm --check-certificate=off https://github.com/rustdesk/rustdesk/releases/download/1.3.7/rustdesk-1.3.7-0.x86_64.rpm
dnf in -y /tmp/rustdesk.rpm
systemctl enable sshd.service
%end

%packages
@^kde-desktop-environment
@anaconda-tools
@firefox
@kde-apps
@kde-media
@kde-pim
@kde-spin-initial-setup
@libreoffice
aajohan-comfortaa-fonts
anaconda
anaconda-install-env-deps
anaconda-live
dracut-live
fedora-release-kde
fuse
glibc-all-langpacks
kde-l10n
kernel
kernel-modules
kernel-modules-extra
libreoffice-draw
libreoffice-math
livesys-scripts
mediawriter
plasma-welcome-fedora
-@admin-tools
-device-mapper-multipath
-digikam
-fcoe-utils
-hplip
-k3b
-kipi-plugins
-krusader
-ktorrent
-mariadb-server-utils
-sdubby
-tracker
-tracker-miners

%end

UPD: By the way, it’s the same on 42, and when using the basic fedora-live-workstation.ks