You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qubes-installer-qubes-os/anaconda/data/post-scripts/40-qubes-alt-kernels.ks

9 lines
214 B

%post --nochroot
for pkg in /run/install/repo/extrakernels/*.rpm; do
name=`basename $pkg .rpm`
rpm --root=$ANA_INSTALL_PATH -q $name > /dev/null || rpm --root=$ANA_INSTALL_PATH -i --oldpackage $pkg
done
%end