# get distribution specific data

_DISTNAME="unknown"

if [[ -f /etc/gentoo-release ]]; then
	_DISTNAME="gentoo"
elif [[ -f /etc/debian_version ]] ; then
	_DISTNAME="debian"
fi

declare -r _DISTNAME

_load dist common