diff --git a/bin/hardening/4.5_enable_apparmor.sh b/bin/hardening/4.5_enable_apparmor.sh index f7279b4..49c4430 100755 --- a/bin/hardening/4.5_enable_apparmor.sh +++ b/bin/hardening/4.5_enable_apparmor.sh @@ -63,7 +63,7 @@ audit_debian () { } audit_centos () { - ok "Apparmor is only support for Debian, So pass!" + ok "AppArmor is only support for Debian, So pass!" } # This function will be called if the script status is on enabled / audit mode @@ -105,7 +105,7 @@ apply_debian () { } apply_centos () { - ok "Apparmor is only support for Debian, So pass!" + ok "AppArmor is only support for Debian, So pass!" } # This function will be called if the script status is on enabled mode diff --git a/bin/hardening/6.19_configure_ntp.sh b/bin/hardening/6.19_configure_ntp.sh index e0a67ca..1f31320 100755 --- a/bin/hardening/6.19_configure_ntp.sh +++ b/bin/hardening/6.19_configure_ntp.sh @@ -15,7 +15,7 @@ set -u # One variable unset, it's over HARDENING_LEVEL=3 HARDENING_EXCEPTION=ntp -ANALOGONS_PKG='chrony' +ANALOGOUS_PKG='chrony' PACKAGE='ntp' NTP_CONF_DEFAULT_PATTERN='^restrict -4 default (kod nomodify notrap nopeer noquery|ignore)' NTP_CONF_FILE='/etc/ntp.conf' @@ -26,9 +26,9 @@ NTP_POOL_CFG='pool 2.debian.pool.ntp.org iburst' # This function will be called if the script status is on enabled / audit mode audit () { - is_pkg_installed $ANALOGONS_PKG + is_pkg_installed $ANALOGOUS_PKG if [ $FNRET = 0 ]; then - ok "Analogons pagkage $ANALOGONS_PKG is installed. So pass check." + ok "Analogous pagkage $ANALOGOUS_PKG is installed. So pass check." else is_pkg_installed $PACKAGE if [ $FNRET != 0 ]; then @@ -59,9 +59,9 @@ audit () { # This function will be called if the script status is on enabled mode apply () { - is_pkg_installed $ANALOGONS_PKG + is_pkg_installed $ANALOGOUS_PKG if [ $FNRET = 0 ]; then - ok "Analogons pagkage $ANALOGONS_PKG is installed. So pass check. " + ok "Analogous pagkage $ANALOGOUS_PKG is installed. So pass check. " else is_pkg_installed $PACKAGE if [ $FNRET = 0 ]; then diff --git a/bin/hardening/6.20_configure_chrony.sh b/bin/hardening/6.20_configure_chrony.sh index 612ccab..bc86f16 100755 --- a/bin/hardening/6.20_configure_chrony.sh +++ b/bin/hardening/6.20_configure_chrony.sh @@ -15,7 +15,7 @@ set -u # One variable unset, it's over HARDENING_LEVEL=3 HARDENING_EXCEPTION=ntp -ANALOGONS_PKG='ntp' +ANALOGOUS_PKG='ntp' PACKAGE='chrony' NTP_CONF_FILE='/etc/chrony/chrony.conf' NTP_SERVER_PATTERN='^(server|pool)' @@ -26,9 +26,9 @@ audit () { if [ $OS_RELEASE -eq 2 ]; then ok "Redhat or CentOS does not have this check, so PASS" else - is_pkg_installed $ANALOGONS_PKG + is_pkg_installed $ANALOGOUS_PKG if [ $FNRET = 0 ]; then - ok "Analogons pagkage $ANALOGONS_PKG is installed. So pass check." + ok "Analogous pagkage $ANALOGOUS_PKG is installed. So pass check." else is_pkg_installed $PACKAGE if [ $FNRET != 0 ]; then @@ -51,9 +51,9 @@ apply () { if [ $OS_RELEASE -eq 2 ]; then ok "Redhat or CentOS does not have this check, so PASS" else - is_pkg_installed $ANALOGONS_PKG + is_pkg_installed $ANALOGOUS_PKG if [ $FNRET = 0 ]; then - ok "Analogons pagkage $ANALOGONS_PKG is installed. So pass check." + ok "Analogous pagkage $ANALOGOUS_PKG is installed. So pass check." else is_pkg_installed $PACKAGE if [ $FNRET = 0 ]; then