1
0
mirror of synced 2025-01-31 04:21:43 +03:00

Re-add support for 32-bit CentOS

Refer to commit: 1cc1e89
This commit is contained in:
hwdsl2 2016-06-06 12:00:59 -05:00
parent 6643a8cd87
commit 6aaf6240c1
2 changed files with 1 additions and 11 deletions

View File

@ -27,11 +27,6 @@ if ! grep -qs -e "release 6" -e "release 7" /etc/redhat-release; then
exit 1
fi
if [ "$(uname -m)" != "x86_64" ]; then
echo "This script only supports 64-bit CentOS/RHEL."
exit 1
fi
if [ -f /proc/user_beancounters ]; then
echo "This script does NOT support OpenVZ VPS."
exit 1

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# Script for automatic setup of an IPsec VPN server on 64-bit CentOS/RHEL 6 & 7.
# Script for automatic setup of an IPsec VPN server on CentOS/RHEL 6 & 7.
# Works on dedicated servers and any KVM- or Xen-based Virtual Private Server (VPS).
#
# DO NOT RUN THIS SCRIPT ON YOUR PC OR MAC! THIS IS MEANT TO BE RUN
@ -47,11 +47,6 @@ if ! grep -qs -e "release 6" -e "release 7" /etc/redhat-release; then
exit 1
fi
if [ "$(uname -m)" != "x86_64" ]; then
echo "This script only supports 64-bit CentOS/RHEL."
exit 1
fi
if [ -f /proc/user_beancounters ]; then
echo "This script does NOT support OpenVZ VPS."
echo "Try alternative: https://github.com/Nyr/openvpn-install"