if [ -n "${__included_kopidel_boot_image_methods-}" ]; then
	return 0
fi
readonly __included_kopidel_boot_image_methods=1

is_img_efi_bootable() (
	if rpm -q grub-efi &>/dev/null; then
		return 0
	fi
	return 1
)

is_img_legacy_bootable() (
	if rpm -q grub-pc &>/dev/null; then
		return 0
	fi
	return 1
)
