Fedora 30 support

This commit is contained in:
Scott E. Graves
2019-04-30 16:43:41 -05:00
parent ea0f05bc76
commit d89533e22e
2 changed files with 5 additions and 1 deletions

View File

@@ -18,7 +18,10 @@ if [ -f /etc/centos-release ]; then
fi
elif [ -f /etc/fedora-release ]; then
. /etc/os-release
if [ "$VERSION_ID" == "29" ]; then
if [ "$VERSION_ID" == "30" ]; then
DISTNAME=fedora
DISTVER=30
elif [ "$VERSION_ID" == "29" ]; then
DISTNAME=fedora
DISTVER=29
elif [ "$VERSION_ID" == "28" ]; then