pre_install() {
	if [[ $INSTALL_TSOCKS == true ]]; then
		# tsocks package is not available in latest fedora releases, so don't exit in case
		# installation failed.
		install tsocks || echo "Installation of the tsocks package failed, proxy may not be available"
	fi

	if [[ $ID == rocky && $VERSION_ID == 8* ]]; then
		sudo "$package_manager" update -y --refresh
	fi
}

# Add packages for TLS testing against kernel
# Limited to fedora as testing is still marked as experimental
# and need a relatively fresh kernel to work with this tooling
if [[ $ID == fedora ]] && ((VERSION_ID >= 38)); then
	packages+=(ktls-utils)
	packages+=(nvmetcli)
fi
