diff --git a/linux/CHANGELOG b/linux/CHANGELOG index 9c9df18..af1c090 100644 --- a/linux/CHANGELOG +++ b/linux/CHANGELOG @@ -5,6 +5,8 @@ and this project **does not adhere to [Semantic Versioning](http://semver.org/sp ### Added +* trixie and forky support (Debian 13, 14) + ### Changed ### Deprecated diff --git a/linux/evocheck.sh b/linux/evocheck.sh index 89f17ab..5fa036c 100755 --- a/linux/evocheck.sh +++ b/linux/evocheck.sh @@ -68,6 +68,8 @@ detect_os() { 10) DEBIAN_RELEASE="buster";; 11) DEBIAN_RELEASE="bullseye";; 12) DEBIAN_RELEASE="bookworm";; + 13) DEBIAN_RELEASE="trixie";; + 14) DEBIAN_RELEASE="forky";; esac fi fi @@ -85,6 +87,12 @@ is_debian_bullseye() { is_debian_bookworm() { test "${DEBIAN_RELEASE}" = "bookworm" } +is_debian_trixie() { + test "${DEBIAN_RELEASE}" = "trixie" +} +is_debian_forky() { + test "${DEBIAN_RELEASE}" = "forky" +} is_pack_web(){ test -e /usr/share/scripts/web-add.sh || test -e /usr/share/scripts/evoadmin/web-add.sh