Fix 6.8 and 7.4.1, and add is_centos_8 method.

This commit is contained in:
Samson-W 2019-12-23 02:13:49 +08:00
parent 837125d368
commit 9a1ccdbcbf
3 changed files with 30 additions and 3 deletions

View File

@ -16,7 +16,7 @@ HARDENING_LEVEL=3
HARDENING_EXCEPTION=dns HARDENING_EXCEPTION=dns
PACKAGES='bind9 unbound' PACKAGES='bind9 unbound'
PACKAGES_REDHAT='bind unbound' PACKAGES_REDHAT='bind unbound bind-utils'
# This function will be called if the script status is on enabled / audit mode # This function will be called if the script status is on enabled / audit mode
audit () { audit () {

View File

@ -20,7 +20,14 @@ PACKAGE_REDHAT='tcp_wrappers'
# This function will be called if the script status is on enabled / audit mode # This function will be called if the script status is on enabled / audit mode
audit () { audit () {
if [ $OS_RELEASE -eq 2 ]; then if [ $OS_RELEASE -eq 2 ]; then
PACKAGE=$PACKAGE_REDHAT is_centos_8
if [ $FNRET == 0 ]; then
warn "The package(tcp_wrappers) has been deprecated in RHEL 7 and therefore it will not be avaliable in RHEL 8 or later RHEL release."
ok "So PASS."
return 0
else
PACKAGE=$PACKAGE_REDHAT
fi
fi fi
is_pkg_installed $PACKAGE is_pkg_installed $PACKAGE
if [ $FNRET != 0 ]; then if [ $FNRET != 0 ]; then
@ -33,7 +40,14 @@ audit () {
# This function will be called if the script status is on enabled mode # This function will be called if the script status is on enabled mode
apply () { apply () {
if [ $OS_RELEASE -eq 2 ]; then if [ $OS_RELEASE -eq 2 ]; then
PACKAGE=$PACKAGE_REDHAT is_centos_8
if [ $FNRET == 0 ]; then
warn "The package(tcp_wrappers) has been deprecated in RHEL 7 and therefore it will not be avaliable in RHEL 8 or later RHEL release."
ok "So PASS."
return 0
else
PACKAGE=$PACKAGE_REDHAT
fi
fi fi
is_pkg_installed $PACKAGE is_pkg_installed $PACKAGE
if [ $FNRET = 0 ]; then if [ $FNRET = 0 ]; then

View File

@ -5,6 +5,19 @@
# debian version check # debian version check
# #
is_centos_8()
{
if [ -r /etc/redhat-release ]; then
if [ $(grep -c "^CentOS.*8.[0-9].*" /etc/redhat-release) -eq 1 ]; then
debug "CentOS version is equal to 8"
FNRET=0
else
debug "CentOS version is less than 8"
FNRET=1
fi
fi
}
is_debian_ge_9() is_debian_ge_9()
{ {
if [ -r /etc/debian_version ]; then if [ -r /etc/debian_version ]; then