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