Browse Source

yum can now get centos distroversion

pull/990/head
Daniel Gibbs 9 years ago
parent
commit
037d2a9eeb
  1. 6
      lgsm/functions/info_distro.sh

6
lgsm/functions/info_distro.sh

@ -25,7 +25,11 @@ else
distroname="$(uname -s) $(uname -r)"
fi
distroversion=$(grep VERSION_ID /etc/os-release | tr -cd '[:digit:]')
if [ -f "/etc/os-release" ]; then
distroversion=$(grep VERSION_ID /etc/os-release | tr -cd '[:digit:]')
elif [ -n "$(command -v yum)" ]; then
distroversion=$(rpm -qa \*-release | grep -Ei "oracle|redhat|centos" | cut -d"-" -f3)
fi
## Glibc version
# e.g: 1.17

Loading…
Cancel
Save