diff --git a/linux/CHANGELOG b/linux/CHANGELOG index 9e110a9..e9671dc 100644 --- a/linux/CHANGELOG +++ b/linux/CHANGELOG @@ -5,6 +5,20 @@ and this project **does not adhere to [Semantic Versioning](http://semver.org/sp ### Added +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +## [23.11] + +### Added + * trixie and forky support (Debian 13, 14) * IS_LXC_OPENSSH: check in openssh is installed in containers * IS_LXC_PHP_BAD_DEBIAN_VERSION: check if php containers use the expected Debian release @@ -20,16 +34,10 @@ and this project **does not adhere to [Semantic Versioning](http://semver.org/sp * IS_PHPEVOLINUXCONF: update for bookworm * IS_MINIFWINCLUDES, IS_NRPEPID: Change Debian release detection logic -### Deprecated - -### Removed - ### Fixed * IS_EVOBACKUP_EXCLUDE_MOUNT: fix regression introduced in previous version -### Security - ## [23.10] 2023-10-26 ### Added diff --git a/linux/evocheck.jessie.sh b/linux/evocheck.jessie.sh index fba55fd..a1bc253 100755 --- a/linux/evocheck.jessie.sh +++ b/linux/evocheck.jessie.sh @@ -4,7 +4,7 @@ # Script to verify compliance of a Linux (Debian) server # powered by Evolix -VERSION="23.10" +VERSION="23.11" readonly VERSION # base functions diff --git a/linux/evocheck.sh b/linux/evocheck.sh index 65df48c..64caaf2 100755 --- a/linux/evocheck.sh +++ b/linux/evocheck.sh @@ -4,7 +4,7 @@ # Script to verify compliance of a Linux (Debian) server # powered by Evolix -VERSION="23.10" +VERSION="23.11" readonly VERSION # base functions @@ -596,8 +596,8 @@ check_evobackup_exclude_mount() { # then we verify that every mount is excluded if ! grep -q -- "^\s*--one-file-system" "${evobackup_file}"; then # old releases of evobackups don't have version - if grep -q "^VERSION=" "${evobackup_file}"; then - evobackup_version=$(sed -E -n 's/VERSION="(.*)"/\1/p' "${evobackup_file}") + if grep -q "^VERSION="23.11"; then + evobackup_version=$(sed -E -n 's/VERSION="23.11") # versions over 22.12 use a new syntax to exclude rsync files if dpkg --compare-versions "$evobackup_version" ge 22.12 ; then sed -En '/RSYNC_EXCLUDES="/,/"/ {s/(RSYNC_EXCLUDES=|")//g;p}' "${evobackup_file}" > "${excludes_file}" diff --git a/linux/evocheck.wheezy.sh b/linux/evocheck.wheezy.sh index 3bbcc1f..0b0dbd5 100755 --- a/linux/evocheck.wheezy.sh +++ b/linux/evocheck.wheezy.sh @@ -4,7 +4,7 @@ # Script to verify compliance of a Linux (Debian) server # powered by Evolix -VERSION="23.10" +VERSION="23.11" readonly VERSION # base functions