mirror of https://github.com/CISOfy/lynis.git
Release 2.5.7
This commit is contained in:
parent
e5c11991ef
commit
be82d80b02
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -1,6 +1,21 @@
|
|||
Lynis Changelog
|
||||
===============
|
||||
|
||||
Lynis 2.5.7 (2017-10-29)
|
||||
|
||||
Changes:
|
||||
--------
|
||||
* Update of Portuguese translation
|
||||
* Added --silent as alias for --quiet
|
||||
* Reduced screen output when running non-privileged
|
||||
* IsRunning function now allows full name process match
|
||||
|
||||
Tests:
|
||||
------
|
||||
* [TOOL-
|
||||
|
||||
---------------------------------------------------------------------------------
|
||||
|
||||
Lynis 2.5.6 (2017-10-27)
|
||||
|
||||
Changes:
|
||||
|
|
10
lynis
10
lynis
|
@ -35,10 +35,10 @@
|
|||
PROGRAM_AUTHOR_CONTACT="lynis-dev@cisofy.com"
|
||||
|
||||
# Version details
|
||||
PROGRAM_RELEASE_DATE="2017-10-27"
|
||||
PROGRAM_RELEASE_TIMESTAMP=1509101422
|
||||
PROGRAM_RELEASE_DATE="2017-10-29"
|
||||
PROGRAM_RELEASE_TIMESTAMP=1509268838
|
||||
PROGRAM_RELEASE_TYPE="final" # dev or final
|
||||
PROGRAM_VERSION="2.5.6"
|
||||
PROGRAM_VERSION="2.5.7"
|
||||
|
||||
# Source, documentation and license
|
||||
PROGRAM_SOURCE="https://github.com/CISOfy/lynis"
|
||||
|
@ -434,7 +434,7 @@ ${YELLOW}Note: ${WHITE}Cancelling the program can leave temporary files behind${
|
|||
#
|
||||
#################################################################################
|
||||
#
|
||||
if [ ${PRIVILEGED} -eq 0 -a ${CHECK} -eq 1 ]; then
|
||||
if [ ${PRIVILEGED} -eq 0 -a ${CHECK} -eq 1 -a ${QUIET} -eq 0 ]; then
|
||||
printf "%s" "${WHITE}
|
||||
###################################################################
|
||||
# #
|
||||
|
@ -454,8 +454,6 @@ ${NORMAL}
|
|||
${RED}WARNING:${NORMAL}
|
||||
${WHITE}*${NORMAL} No suggestions or warnings will be displayed in report (due to missing log file)"
|
||||
fi
|
||||
#printf "\n\n%s" " ${WHITE}Press [ENTER] to continue or [CTRL] + C to break${NORMAL}"
|
||||
#if [ ${QUICKMODE} -eq 0 ]; then read void; fi
|
||||
fi
|
||||
#
|
||||
#################################################################################
|
||||
|
|
Loading…
Reference in New Issue