8558b595b0
InstallClass.postAction isn't called from anywhere, move things to anaconda post-scripts. Add regenerate of initramfs image to include qubes-pciback module.
10 lines
174 B
Plaintext
10 lines
174 B
Plaintext
%post
|
|
|
|
rpm --import /etc/pki/rpm-gpg/*
|
|
for initrd in /boot/initramfs-*.img; do
|
|
version=`basename $initrd .img|cut -f 2- -d-`
|
|
dracut --force $initrd $version
|
|
done
|
|
|
|
%end
|