Linux - Release 23.11

This commit is contained in:
David Prevot 2023-11-22 17:02:06 +01:00
parent 79a61e3046
commit e80a7781c7
4 changed files with 19 additions and 11 deletions

View file

@ -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

View file

@ -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

View file

@ -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}"

View file

@ -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