Sophie

Sophie

distrib > Mageia > 8 > i586 > media > nonfree-updates > by-pkgid > 7f2867d05bf26118ba86ec88a36ba880 > scriptlet

microcode-0.20230613-2.mga8.nonfree.noarch.rpm

POSTIN

/bin/sh
if [ -z "$DURING_INSTALL" ] ; then
  kernel=$(uname -r)
  if [ -d /usr/lib/modules/$kernel ] ; then
    # rebuild initrd for currently running kernel
    /usr/bin/dracut -fq
  else
    # rebuild initrd for most recently installed kernel
    kernel=$(ls -1t /usr/lib/modules | head -1)
    /usr/bin/dracut -fq /boot/initrd-$kernel.img $kernel
  fi
fi