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

Add temporal warning for Debian Stretch users

This commit is contained in:
Nyr 2017-06-18 17:58:53 +02:00
parent c0f0d47a64
commit 82776145f2

View File

@ -8,6 +8,12 @@
# universal as possible.
if grep -qs "9.0" /etc/debian_version; then
echo "Debian 9.0 is not supported yet
The installer will be compatible within the next few days"
exit 7
fi
# Detect Debian users running the script with "sh" instead of bash
if readlink /proc/$$/exe | grep -qs "dash"; then
echo "This script needs to be run with bash, not sh"