
  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-6.6.141-GOS-lts --kver 6.6.141-GOS-lts 2>&1 > /dev/null
        ln -sf initramfs-6.6.141-GOS-lts boot/initrd-lts
      else
        mkinitramfs -a -k 6.6.141-GOS-lts
        ln -sf initrd-6.6.141-GOS-lts boot/initrd-lts
      fi
    ln -sf kernel-6.6.141-GOS-lts boot/kernel-lts
  fi
  
