1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Merge pull request #1580 from holta/ubuntu-19

is_ubuntu_19 for Ubuntu Disco Dingo 19.04 & 19.10; is_raspbian_10 for upcoming Raspbian Buster
This commit is contained in:
A Holt 2019-03-23 08:18:31 -04:00 committed by GitHub
commit 815454beec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 98 additions and 15 deletions

View file

@ -19,17 +19,19 @@ DHCPCD_PATH=`which dhcpcd`
NM_PATH=`which NetworkManager`
case $OS_VER in
"fedora-18" | \
"fedora-22" | \
"debian-8" | \
"debian-9" | \
"debian-10" | \
"ubuntu-16" | \
"ubuntu-17" | \
"ubuntu-18" | \
"centos-7" | \
"raspbian-8"| \
"raspbian-9")
"fedora-18" | \
"fedora-22" | \
"debian-8" | \
"debian-9" | \
"debian-10" | \
"ubuntu-16" | \
"ubuntu-17" | \
"ubuntu-18" | \
"ubuntu-19" | \
"centos-7" | \
"raspbian-8" | \
"raspbian-9" | \
"raspbian-10")
;;
*) OS_VER="OS_not_supported"
;;