blob: 4dd4ed1bc4b7d611edbc272871e1aabbe2f6f583 (
plain) (
tree)
|
|
# 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
|