mirror of
https://github.com/CISOfy/lynis.git
synced 2025-07-27 07:44:14 +02:00
Added support for multiple languages
This commit is contained in:
parent
7ff4f3b1d3
commit
f851834dbd
@ -388,6 +388,9 @@ config:compliance_standards:cis,hipaa,iso27001,pci-dss:
|
|||||||
# Show non-zero exit code when warnings are found (default: no)
|
# Show non-zero exit code when warnings are found (default: no)
|
||||||
#error-on-warnings=yes
|
#error-on-warnings=yes
|
||||||
|
|
||||||
|
# Set output to a different language
|
||||||
|
#language=es
|
||||||
|
|
||||||
# Enable quick mode (no waiting for keypresses, same as --quick option)
|
# Enable quick mode (no waiting for keypresses, same as --quick option)
|
||||||
#quick=yes
|
#quick=yes
|
||||||
|
|
||||||
|
@ -93,6 +93,7 @@ unset LANG
|
|||||||
HOSTID=""
|
HOSTID=""
|
||||||
IDS_IPS_TOOL_FOUND=0
|
IDS_IPS_TOOL_FOUND=0
|
||||||
IPTABLESBINARY=""
|
IPTABLESBINARY=""
|
||||||
|
LANGUAGE="en-US"
|
||||||
LINUX_VERSION=""
|
LINUX_VERSION=""
|
||||||
LINUXCONFIGFILE=""
|
LINUXCONFIGFILE=""
|
||||||
LMDBINARY=""
|
LMDBINARY=""
|
||||||
|
@ -126,6 +126,11 @@
|
|||||||
GROUP_NAME="${VALUE}"
|
GROUP_NAME="${VALUE}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
# Language
|
||||||
|
language | lang)
|
||||||
|
LANGUAGE="${VALUE}"
|
||||||
|
;;
|
||||||
|
|
||||||
# Lynis Enterprise license key
|
# Lynis Enterprise license key
|
||||||
license_key | license-key)
|
license_key | license-key)
|
||||||
LICENSE_KEY="${VALUE}"
|
LICENSE_KEY="${VALUE}"
|
||||||
|
24
lynis
24
lynis
@ -89,6 +89,14 @@ Make sure to execute ${PROGRAM_NAME} from untarred directory or check your insta
|
|||||||
DBDIR="${I}"
|
DBDIR="${I}"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Import translations. First import English to prefill all texts
|
||||||
|
if [ ! -f ${DBDIR}/languages/en-US ]; then
|
||||||
|
echo "Could not find languages directory (file: ${DBDIR}/languages/en-US)"
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
. ${DBDIR}/languages/en-US
|
||||||
|
fi
|
||||||
#
|
#
|
||||||
#################################################################################
|
#################################################################################
|
||||||
#
|
#
|
||||||
@ -432,7 +440,7 @@ ${YELLOW}Note: ${WHITE}Cancelling the program can leave temporary files behind${
|
|||||||
echo " ${RED}Error${NORMAL}: ${WHITE}Invalid option '${WRONGOPTION_value}'${NORMAL}"
|
echo " ${RED}Error${NORMAL}: ${WHITE}Invalid option '${WRONGOPTION_value}'${NORMAL}"
|
||||||
else
|
else
|
||||||
if [ ${VIEWHELP} -eq 0 ]; then
|
if [ ${VIEWHELP} -eq 0 ]; then
|
||||||
echo " ${RED}No command specified.${WHITE} Exiting..${NORMAL}"
|
echo " ${RED}No command provided.${WHITE} Exiting..${NORMAL}"
|
||||||
echo ""
|
echo ""
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
@ -533,12 +541,22 @@ ${NORMAL}
|
|||||||
#
|
#
|
||||||
#################################################################################
|
#################################################################################
|
||||||
#
|
#
|
||||||
# Read profile/template/plugins
|
# Read profile/language
|
||||||
#
|
#
|
||||||
#################################################################################
|
#################################################################################
|
||||||
#
|
#
|
||||||
SafePerms ${INCLUDEDIR}/profiles
|
SafePerms ${INCLUDEDIR}/profiles
|
||||||
. ${INCLUDEDIR}/profiles
|
. ${INCLUDEDIR}/profiles
|
||||||
|
|
||||||
|
# Import a different language when configured
|
||||||
|
if [ ! "${LANGUAGE}" = "en-US" ]; then
|
||||||
|
if [ ! -f ${DBDIR}/languages/${LANGUAGE} ]; then
|
||||||
|
Display "Warning: could not find languages directory (file: ${DBDIR}/languages/${LANGUAGE})"
|
||||||
|
else
|
||||||
|
LogText "Importing language file (${DBDIR}/languages/${LANGUAGE})"
|
||||||
|
. ${DBDIR}/languages/${LANGUAGE}
|
||||||
|
fi
|
||||||
|
fi
|
||||||
#
|
#
|
||||||
#################################################################################
|
#################################################################################
|
||||||
#
|
#
|
||||||
@ -767,7 +785,7 @@ ${NORMAL}
|
|||||||
PLUGIN_PHASE=$1
|
PLUGIN_PHASE=$1
|
||||||
if [ ${PLUGIN_PHASE} -eq 0 -o ${PLUGIN_PHASE} -gt 2 ]; then echo "Incorrect phase number when calling RunPlugins"; ExitFatal; fi
|
if [ ${PLUGIN_PHASE} -eq 0 -o ${PLUGIN_PHASE} -gt 2 ]; then echo "Incorrect phase number when calling RunPlugins"; ExitFatal; fi
|
||||||
LogTextBreak
|
LogTextBreak
|
||||||
InsertPluginSection "Plugins (phase ${PLUGIN_PHASE})"
|
InsertPluginSection "Plugins (${GEN_PHASE} ${PLUGIN_PHASE})"
|
||||||
if [ ${PLUGIN_PHASE} -eq 1 ]; then
|
if [ ${PLUGIN_PHASE} -eq 1 ]; then
|
||||||
Display --text "Note: plugins have more extensive tests, which may take a few minutes to complete"
|
Display --text "Note: plugins have more extensive tests, which may take a few minutes to complete"
|
||||||
Display --text " "
|
Display --text " "
|
||||||
|
Loading…
x
Reference in New Issue
Block a user