blob: 4dd4ed1bc4b7d611edbc272871e1aabbe2f6f583 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# 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
|