mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 23:32:06 -04:00
Deprecate for all RHEL/CentOS 6 32bits flavors
This commit is contained in:
parent
29161176ef
commit
f85dd45ff0
2 changed files with 2 additions and 2 deletions
|
|
@ -758,7 +758,7 @@ elif [ -f /etc/redhat-release ]; then
|
|||
|
||||
RPM_DIST_NAME=`(. /etc/os-release 2> /dev/null && echo $ID) || echo "unknown"`
|
||||
|
||||
if [ "$PYVER" -eq 26 -a "$RPM_DIST_NAME" != "rhel" -a $(uname -m) != 'x86_64' ]; then
|
||||
if [ "$PYVER" -eq 26 -a $(uname -m) != 'x86_64' ]; then
|
||||
# 32 bits CentOS 6 and affiliates (except RHEL) are not supported anymore by certbot-auto.
|
||||
DEPRECATED_OS=1
|
||||
fi
|
||||
|
|
|
|||
|
|
@ -333,7 +333,7 @@ elif [ -f /etc/redhat-release ]; then
|
|||
|
||||
RPM_DIST_NAME=`(. /etc/os-release 2> /dev/null && echo $ID) || echo "unknown"`
|
||||
|
||||
if [ "$PYVER" -eq 26 -a "$RPM_DIST_NAME" != "rhel" -a $(uname -m) != 'x86_64' ]; then
|
||||
if [ "$PYVER" -eq 26 -a $(uname -m) != 'x86_64' ]; then
|
||||
# 32 bits CentOS 6 and affiliates (except RHEL) are not supported anymore by certbot-auto.
|
||||
DEPRECATED_OS=1
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue