
  if [ -e /tmp/buildisoscript ] || [ -e /tmp/setup ]; then
    echo Post-install not needed in build environment
  else
      if [ -x usr/bin/dracut ]; then
        dracut initramfs-7.0.10-GOS-stable --kver 7.0.10-GOS-stable 2>&1 > /dev/null
        ln -sf initramfs-7.0.10-GOS-stable boot/initrd-stable
      else
        mkinitramfs -a -k 7.0.10-GOS-stable
        ln -sf initrd-7.0.10-GOS-stable boot/initrd-stable
      fi
    ln -sf kernel-7.0.10-GOS-stable boot/kernel-stable
  fi
  
