File tree Expand file tree Collapse file tree 3 files changed +20
-6
lines changed
Expand file tree Collapse file tree 3 files changed +20
-6
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,14 @@ Debian 12 PRO:
5858 extends : .test-deb-pro
5959 image : ${CI_DEPENDENCY_PROXY_DIRECT_GROUP_IMAGE_PREFIX}/debian:bookworm
6060
61+ Debian 13 CE :
62+ extends : .test-deb-ce
63+ image : ${CI_DEPENDENCY_PROXY_DIRECT_GROUP_IMAGE_PREFIX}/debian:trixie-slim
64+
65+ Debian 13 PRO :
66+ extends : .test-deb-pro
67+ image : ${CI_DEPENDENCY_PROXY_DIRECT_GROUP_IMAGE_PREFIX}/debian:trixie-slim
68+
6169Raspbian CE :
6270 extends : .test-deb-ce
6371 image : ${CI_DEPENDENCY_PROXY_DIRECT_GROUP_IMAGE_PREFIX}/debian:bookworm-slim
Original file line number Diff line number Diff line change 5252function is_supported_distro() {
5353 local DISTROS=(
5454 " debian12"
55+ " debian13"
5556 " raspbian"
5657 " ubuntu24"
5758 " rhel9"
@@ -135,6 +136,10 @@ os_detect () {
135136 elif [ " ${CODENAME} " = " noble" ]
136137 then
137138 CODENAME=" focal"
139+ # We use buster debian package for trixie
140+ elif [ " ${CODENAME} " = " trixie" ]
141+ then
142+ CODENAME=" buster"
138143 fi
139144 elif command -v zypper > /dev/null 2>&1
140145 then
@@ -173,9 +178,7 @@ install_dependencies () {
173178 apt-transport-https \
174179 ca-certificates \
175180 curl \
176- gnupg-agent \
177- software-properties-common \
178- haveged \
181+ gnupg \
179182 certbot \
180183 wget \
181184 python3-certbot-nginx
Original file line number Diff line number Diff line change 5252function is_supported_distro() {
5353 local DISTROS=(
5454 " debian12"
55+ " debian13"
5556 " raspbian"
5657 " ubuntu24"
5758 " rhel9"
@@ -135,6 +136,10 @@ os_detect () {
135136 elif [ " ${CODENAME} " = " noble" ]
136137 then
137138 CODENAME=" focal"
139+ # We use buster debian package for trixie
140+ elif [ " ${CODENAME} " = " trixie" ]
141+ then
142+ CODENAME=" buster"
138143 fi
139144 elif command -v zypper > /dev/null 2>&1
140145 then
@@ -173,9 +178,7 @@ install_dependencies () {
173178 apt-transport-https \
174179 ca-certificates \
175180 curl \
176- gnupg-agent \
177- software-properties-common \
178- haveged \
181+ gnupg \
179182 certbot \
180183 wget \
181184 python3-certbot-nginx
You can’t perform that action at this time.
0 commit comments