Skip to content

Commit 091bc97

Browse files
committed
Merge branch 'feature/PB-30256_Support-ubuntu-2404' into 'develop'
Feature/pb 30256 support ubuntu 2404 See merge request passbolt/passbolt-ops/passbolt-dep-scripts!32
2 parents 0f16b97 + 7660395 commit 091bc97

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

passbolt-repo-setup.ce.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ function is_supported_distro() {
5656
"raspbian"
5757
"ubuntu20"
5858
"ubuntu22"
59+
"ubuntu24"
5960
"centos7"
6061
"rhel7"
6162
"rhel8"
@@ -138,6 +139,10 @@ os_detect () {
138139
CODENAME="buster"
139140
# We use focal ubuntu package for jammy
140141
elif [ "${CODENAME}" = "jammy" ]
142+
then
143+
CODENAME="focal"
144+
# We use focal ubuntu package for noble
145+
elif [ "${CODENAME}" = "noble" ]
141146
then
142147
CODENAME="focal"
143148
fi

passbolt-repo-setup.pro.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ function is_supported_distro() {
5656
"raspbian"
5757
"ubuntu20"
5858
"ubuntu22"
59+
"ubuntu24"
5960
"centos7"
6061
"rhel7"
6162
"rhel8"
@@ -138,6 +139,10 @@ os_detect () {
138139
CODENAME="buster"
139140
# We use focal ubuntu package for jammy
140141
elif [ "${CODENAME}" = "jammy" ]
142+
then
143+
CODENAME="focal"
144+
# We use focal ubuntu package for noble
145+
elif [ "${CODENAME}" = "noble" ]
141146
then
142147
CODENAME="focal"
143148
fi

0 commit comments

Comments
 (0)