Update from CE 3.83 to higher Version not possible

I have one Passbolt Pro Server which upgrades with apt-get update && apt-get upgrade to every new version of Passbolt fine. But i have also two Passbolt CE Server, which hanging on Version 3.8.3.

apt-update && apt-upgrade don’t finde any new Passbolt Version.

Is there anything i can do?

Checklist
[x ] I have read intro post: About the Installation Issues category
[ x] I have read the tutorials, help and searched for similar issues
[ x] I provide relevant information about my server (component names and versions, etc.)
[ x] I provide a copy of my logs and healthcheck
[ x] I describe the steps I have taken to trouble shoot the problem
[ x] I describe the steps on how to reproduce the issue

Hey @Holla_Die_Waldfee

Are the apt repos on the CE installs matching the latest from the help site for whatever flavor you are running?

If so, which flavor and OS version?

all 3 Passbolt Server are running on Ubuntu. My Passbolt Pro is running with Ubuntu 20.04, the CE Server with Ubuntu 22.04.

I dont find any apt repos on the help sites?

This is the installation Guide which i used: Passbolt Help | Install Passbolt CE on Ubuntu 22.04

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://de.archive.ubuntu.com/ubuntu jammy main restricted
# deb-src http://de.archive.ubuntu.com/ubuntu jammy main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://de.archive.ubuntu.com/ubuntu jammy-updates main restricted
# deb-src http://de.archive.ubuntu.com/ubuntu jammy-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://de.archive.ubuntu.com/ubuntu jammy universe
# deb-src http://de.archive.ubuntu.com/ubuntu jammy universe
deb http://de.archive.ubuntu.com/ubuntu jammy-updates universe
# deb-src http://de.archive.ubuntu.com/ubuntu jammy-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://de.archive.ubuntu.com/ubuntu jammy multiverse
# deb-src http://de.archive.ubuntu.com/ubuntu jammy multiverse
deb http://de.archive.ubuntu.com/ubuntu jammy-updates multiverse
# deb-src http://de.archive.ubuntu.com/ubuntu jammy-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://de.archive.ubuntu.com/ubuntu jammy-backports main restricted universe multiverse
# deb-src http://de.archive.ubuntu.com/ubuntu jammy-backports main restricted universe multiverse

deb http://de.archive.ubuntu.com/ubuntu jammy-security main restricted
# deb-src http://de.archive.ubuntu.com/ubuntu jammy-security main restricted
deb http://de.archive.ubuntu.com/ubuntu jammy-security universe
# deb-src http://de.archive.ubuntu.com/ubuntu jammy-security universe
deb http://de.archive.ubuntu.com/ubuntu jammy-security multiverse
# deb-src http://de.archive.ubuntu.com/ubuntu jammy-security multiverse

Hi

What is the content of the /etc/apt/sources.list.d/passbolt.list ?

Types: deb
URIs: https://download.passbolt.com/ce/ubuntu
Suites: focal
Components: stable
Signed-By: /usr/share/keyrings/passbolt-repository.gpg

That content is correct. I could not reproduce your issue pulling from ce brings 3.10.0. Maybe you could clear the apt cache and try to update passbolt repo only

sudo apt-get update -o Dir::Etc::sourcelist="passbolt.list"

now i have the following message after your recommandation with the clearing of the cache and apt-get update

The following packages were automatically installed and are no longer required:
  libflashrom1 libftdi1-2
Use 'apt autoremove' to remove them.
The following packages have been kept back:
  passbolt-ce-server python3-software-properties software-properties-common update-notifier-common
0 upgraded, 0 newly installed, 0 to remove and 4 not upgraded.

i solved this with sudo apt-get --with-new-pkgs upgrade

1 Like

https://askubuntu.com/questions/1420969/how-to-force-packages-that-have-been-kept-back-to-be-installed-as-automat/1421130#1421130

I had been reading up on that a few weeks ago and the link above explains how to ensure multiple machines are getting similar updates on packages by manually setting the machine number in the apt settings. Phased updates can be disabled as well. I don’t recall experiencing these before 22.04 but my understanding is they are intentionally random and gradual rollouts instead of to everyone all at once, and not a matter of a dependency issue.

I never knew the updates could be hidden though. This is good info I need to recheck mine.