mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 16:19:13 +02:00
Clean stderr in case of /etc/os-release does not exist (#6835)
This commit is contained in:
committed by
Brad Warren
parent
674ba896eb
commit
81d9b5250e
@@ -749,8 +749,8 @@ elif [ -f /etc/redhat-release ]; then
|
||||
unset LE_PYTHON
|
||||
DeterminePythonVersion "NOCRASH"
|
||||
# Starting to Fedora 29, python2 is on a deprecation path. Let's move to python3 then.
|
||||
RPM_DIST_NAME=`(. /etc/os-release && echo $ID) || echo "unknown"`
|
||||
RPM_DIST_VERSION=`(. /etc/os-release && echo $VERSION_ID) || echo "0"`
|
||||
RPM_DIST_NAME=`(. /etc/os-release 2> /dev/null && echo $ID) || echo "unknown"`
|
||||
RPM_DIST_VERSION=`(. /etc/os-release 2> /dev/null && echo $VERSION_ID) || echo "0"`
|
||||
if [ "$RPM_DIST_NAME" = "fedora" -a "$RPM_DIST_VERSION" -ge 29 -o "$PYVER" -eq 26 ]; then
|
||||
Bootstrap() {
|
||||
BootstrapMessage "RedHat-based OSes that will use Python3"
|
||||
|
||||
Reference in New Issue
Block a user