1
0
mirror of https://github.com/Nyr/openvpn-install.git synced 2024-11-23 21:46:08 +03:00

Check for unsupported distributions

This commit is contained in:
Nyr 2019-09-21 14:39:58 +02:00
parent 1c79a9603b
commit 68e48d21b6

View File

@ -5,6 +5,21 @@
# Copyright (c) 2013 Nyr. Released under the MIT License. # Copyright (c) 2013 Nyr. Released under the MIT License.
if grep -qs "14.04" "/etc/os-release"; then
echo "Ubuntu 14.04 is too old and not supported"
exit
fi
if grep -qs "jessie" "/etc/os-release"; then
echo "Debian 8 is too old and not supported"
exit
fi
if grep -qs "CentOS release 6" "/etc/redhat-release"; then
echo "CentOS 6 is too old and not supported"
exit
fi
if grep -qs "Ubuntu 16.04" "/etc/os-release"; then if grep -qs "Ubuntu 16.04" "/etc/os-release"; then
echo 'Ubuntu 16.04 is no longer supported in the current version of openvpn-install echo 'Ubuntu 16.04 is no longer supported in the current version of openvpn-install
Use an older version if Ubuntu 16.04 support is needed: https://git.io/vpn1604' Use an older version if Ubuntu 16.04 support is needed: https://git.io/vpn1604'