mirror of
https://github.com/angristan/openvpn-install.git
synced 2024-11-22 00:39:03 +01:00
parent
a34d13adbb
commit
5844a8440f
@ -100,6 +100,7 @@ The script supports these OS and architectures:
|
|||||||
| CentOS 7 | ❔ | ✅ | ❌ | ✅ |
|
| CentOS 7 | ❔ | ✅ | ❌ | ✅ |
|
||||||
| Debian 8 | ✅ | ✅ | ❌ | ❌ |
|
| Debian 8 | ✅ | ✅ | ❌ | ❌ |
|
||||||
| Debian 9 | ❌ | ✅ | ✅ | ✅ |
|
| Debian 9 | ❌ | ✅ | ✅ | ✅ |
|
||||||
|
| Debian 10 | ❔ | ✅ | ❔ | ❔ |
|
||||||
| Fedora 27 | ❔ | ✅ | ❔ | ❔ |
|
| Fedora 27 | ❔ | ✅ | ❔ | ❔ |
|
||||||
| Fedora 28 | ❔ | ✅ | ❔ | ❔ |
|
| Fedora 28 | ❔ | ✅ | ❔ | ❔ |
|
||||||
| Ubuntu 16.04 | ✅ | ✅ | ❌ | ❌ |
|
| Ubuntu 16.04 | ✅ | ✅ | ❌ | ❌ |
|
||||||
|
1
Vagrantfile
vendored
1
Vagrantfile
vendored
@ -5,6 +5,7 @@ autostart_machines = ENV['VAGRANT_AUTOSTART'] == 'true' || false
|
|||||||
# else, run `vagrant up <hostname>`
|
# else, run `vagrant up <hostname>`
|
||||||
|
|
||||||
machines = [
|
machines = [
|
||||||
|
{ hostname: 'debian-10', box: 'debian/stretch64' },
|
||||||
{ hostname: 'debian-9', box: 'debian/stretch64' },
|
{ hostname: 'debian-9', box: 'debian/stretch64' },
|
||||||
{ hostname: 'debian-8', box: 'debian/jessie64' },
|
{ hostname: 'debian-8', box: 'debian/jessie64' },
|
||||||
{ hostname: 'ubuntu-1604', box: 'ubuntu/bionic64' },
|
{ hostname: 'ubuntu-1604', box: 'ubuntu/bionic64' },
|
||||||
|
@ -21,7 +21,7 @@ function checkOS () {
|
|||||||
source /etc/os-release
|
source /etc/os-release
|
||||||
|
|
||||||
if [[ "$ID" == "debian" ]]; then
|
if [[ "$ID" == "debian" ]]; then
|
||||||
if [[ ! $VERSION_ID =~ (8|9) ]]; then
|
if [[ ! $VERSION_ID =~ (8|9|10) ]]; then
|
||||||
echo "⚠️ Your version of Debian is not supported."
|
echo "⚠️ Your version of Debian is not supported."
|
||||||
echo ""
|
echo ""
|
||||||
echo "However, if you're using Debian >= 9 or unstable/testing then you can continue."
|
echo "However, if you're using Debian >= 9 or unstable/testing then you can continue."
|
||||||
|
Loading…
Reference in New Issue
Block a user