Monday, March 16, 2026
support@conference.yunohost.org
March
Mon Tue Wed Thu Fri Sat Sun
            1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 28 29
30 31          

[00:01:37] <lps> I've run it and received no errors, should I try the migration after that?
[00:04:17] <lps> I've ensured that all system updates were completed, though it still gives a warning
[00:04:21] <lps> https://paste.yunohost.org/raw/agojerizuk
[00:07:52] <lps> I feel like there may be an issue with sources, they appear red as it's loading the system update status
[00:13:02] <lps> Just a thought but is there a way I could do the upgrade to Debian Bookworm independent from the Yunohost upgrade or is it essential that the migration happens together?
[00:15:32] <lps> One last thought ... if I were to do a clean Yunohost install, subdomain and all, could I restore apps from a local backup, even if they were from a previous version of Yunohost?
[00:20:17] <orhtej2> > <@rodinux:matrix.org> why this repo is here `sources.list.d/crystal.list:deb http://download.opensuse.org/repositories/devel:/languages:/crystal/Debian_11/ /` ? can you try `grep -i 'opensuse' /etc/apt/source.list.d/`

Invidious?
[00:23:39] <lps> I ran that, and it's telling me "no such file or directory"
[00:24:30] <lps> and no, I don't have invidious currently, but I did experiment with it in the past, a long time ago
[00:27:25] <lps> I was just looking into a guide to upgrade debian https://linuxiac.com/how-to-upgrade-to-debian-12-from-debian-11/ and after the upgrade it suggests " sudo apt --purge autoremove" would that be wise to attempt to clean up any left over parts from previous updates?
[00:27:44] <rodinux> I think you must resolve gpg keys for surry before
[00:28:20] <rodinux> you need continue the upgrade now
[00:29:08] <rodinux> it could be more difficult, the upgrade do some migrations, php7.3 is not avalaible on debian 12, postgresql is also migrated, and the system have little chnages... I think is more easy debug your upgrade with the scripts for migrate... Here it is just to fix the sources
[00:29:13] <rodinux> what say `yunohost tools update` to see if you need for example something like `sudo apt install debsuryorg-archive-keyring` ??
[00:29:14] <rodinux> you are still using bullseye, so you are still with a debian 11 in the logs
[00:30:38] <rodinux> you need fix first the signatures
```
2026-03-15 20:02:49,898: DEBUG - Err:5 https://packages.sury.org/php bullseye InRelease
2026-03-15 20:02:49,898: DEBUG - The following signatures were invalid: EXPKEYSIG B188E2B695BD4743 DEB.SURY.ORG Automatic Signing Key <deb@sury.org>
2026-03-15 20:02:49,990: DEBUG - Err:6 http://download.opensuse.org/repositories/devel:/languages:/crystal/Debian_11 InRelease
2026-03-15 20:02:49,990: DEBUG - The following signatures were invalid: EXPKEYSIG E456AE72856D1476 devel:languages:crystal OBS Project <devel:languages:crystal@build.opensuse.org>
[00:30:57] <lps> yes, I am still using Debian 11
[00:31:25] <lps> sorry I misunderstood ... that was a statement not a question
[00:33:09] <lps> Here is the log from Tools > update ... all system updates seem to have completed https://paste.yunohost.org/raw/abefisupac
[00:35:07] <lps> However when I run the system update again, it seems like they haven't actually updated ... since the required updates reappear:(
[00:35:53] <lps> which are primarly php as you mentioned
[00:36:59] <rodinux> step by step... try `sudo yunohost tools regen-conf -f`
[00:41:40] <rodinux> there is errors with all php extra packages, the repo surry must be fixed
[00:46:07] <rodinux> yes is only on error because the signature is not avalaible for surry
[01:01:50] <rodinux> if the regen-conf does not solve this you can do this

`sudo rm /etc/apt/trusted.gpg.d/extra_php_version.gpg` then `sudo yunohost tools regen-conf apt --force`


[01:01:51] <rodinux> Alternativly just fetch the current key
```
curl -sL "https://packages.sury.org/php/apt.gpg" | gpg --dearmor | sudo tee "/etc/apt/trusted.gpg.d/extra_php_version.gpg" > /dev/null

[01:02:47] <lps> step one seems to have worked, the system files have been updated:) https://paste.yunohost.org/raw/uxipinaput
[01:03:07] <lps> but I haven't tried the migration yet ... should I be doing anything before that?
[08:02:59] <inrepublica> Hello all, I have a problem to reinstall paperless-ngx on my VPS: https://paste.yunohost.org/raw/ubepolisat
The problem ? -> `2026-03-16 08:59:07,480: WARNING - E: Packages need to be removed but remove is disabled.`
[09:32:04] <orhtej2> > <@rodinux:matrix.org> it could be more difficult, the upgrade do some migrations, php7.3 is not avalaible on debian 12, postgresql is also migrated, and the system have little chnages... I think is more easy debug your upgrade with the scripts for migrate... Here it is just to fix the sources

Tbh do we have an app that uses php 7.3 still?
[09:32:37] <inrepublica> i made:
```
apt purge postgresql-16 postgresql-client-16 postgresql-18 postgresql-client-18
apt autoremove --purge
```
`and apt install libpq5=15.16-0+deb12u1 libpq-dev=15.16-0+deb12u1`
[09:32:38] <inrepublica> And it's good when i make : `yunohost app install paperless-ngx`
[09:32:40] <inrepublica> probem solved, thanks !