[00:19:08]
<rodinux> ooops it seems fix zabbix-cli to use this fix, but I have another bug... https://paste.yunohost.org/raw/foxobeqoge
[00:19:54]
<rodinux> 2025-10-05 02:09:56,978: INFO - Enabling LDAP authentication
2025-10-05 02:09:57,000: DEBUG - + mysql --user=zabbix --password=********** --database=zabbix -e 'INSERT INTO `userdirectory` (`userdirectoryid`,`name`, `description`, `idp_type`, `provision_status`) VALUES (1,'\''localhost'\'', '\'''\'', '\''1'\'', '\''0'\'');'
2025-10-05 02:09:57,007: DEBUG - + mysql --user=zabbix --password=********** --database=zabbix -e 'INSERT INTO `userdirectory_ldap` (`userdirectoryid`,`host`, `port`, `base_dn`, `search_attribute`, `bind_dn`, `bind_password`, `start_tls`, `search_filter`, `group_basedn`, `group_name`, `group_member`, `user_ref_attr`, `group_filter`, `group_membership`, `user_username`, `user_lastname`) VALUES (1,'\''127.0.0.1'\'', '\''389'\'', '\''ou=users,dc=yunohost,dc=org'\'', '\''uid'\'', '\'''\'', '\'''\'', '\''0'\'', '\'''\'', '\'''\'', '\'''\'', '\'''\'', '\'''\'', '\'''\'', '\'''\'', '\'''\'', '\'''\'');'
2025-10-05 02:09:57,014: DEBUG - + mysql --user=zabbix --password=********** --database=zabbix -e 'UPDATE `config` SET `authentication_type` = '\''1'\'', `ldap_auth_enabled` = '\''1'\'', `ldap_userdirectoryid` = '\''1'\'' WHERE `config`.`configid` = 1;'
2025-10-05 02:09:57,023: INFO - Creating admin user
2025-10-05 02:09:57,024: DEBUG - + ynh_print_info 'Creating admin user'
2025-10-05 02:09:57,025: DEBUG - ++ ynh_user_get_info rodtest lastname
2025-10-05 02:09:57,048: WARNING - It looks like you called the helper using positional arguments instead of keyword arguments ?
[00:23:08]
<rodinux> Perhaphs I need use `--fullname` instead of `user_username` and `user_lastname` ? but I don't know if it's a recommanded from zabbix database or if it's for the yunohost LDAP ??
[00:26:44]
<Aleks (he/him/il/lui)> ```
2025-10-05 02:09:57,025: DEBUG - ++ ynh_user_get_info rodtest lastname
2025-10-05 02:09:57,048: WARNING - It looks like you called the helper using positional arguments instead of keyword arguments ?
```
cf https://doc.yunohost.org/fr/packaging/scripts/helpers_v2.1/#:~:text=ynh_user_get_info
>Usage: `ynh_user_get_info --username=username --key=key`
[00:30:38]
<rodinux> here rodtest is the ID ?? not the name
```
yunohost user info rodtest
fullname: Rod Tests
loginShell: /bin/bash
mail: rodtest@yunohost.packaging
mail-aliases:
mail-forward:
mailbox-quota:
limit: Pas de quota
use: 191K
username: rodtest
[00:33:25]
<rodinux> before zabbix-cli have create an admin with
```
zabbix_username="svc_${app}_ldap"
zabbix_password=$(ynh_string_random --length=32)
ynh_app_setting_set --app="$app" --key=zabbix_username --value="$zabbix_username"
ynh_app_setting_set --app="$app" --key=zabbix_password --value="$zabbix_password"
[00:33:25]
<Aleks (he/him/il/lui)> just ... use `--username=` and `--key=` ...
[00:34:09]
<rodinux> here is for the admin user with id ??
[01:07:08]
<rodinux> yeah !! ça fonctionne !! en local pour l'instant !
[01:19:18]
<rodinux> so install zabbix works, but when try do a backup, it looks for php7.4 fpm and it's php8.2 so it fails ???
[01:19:51]
<rodinux> https://paste.yunohost.org/raw/zoxohilihi
[01:21:17]
<Aleks (he/him/il/lui)> https://github.com/YunoHost-Apps/zabbix_ynh/blob/testing/scripts/backup#L22
[01:21:30]
<Aleks (he/him/il/lui)> if this is still the same code, you may want to use `php_version` instead of `phpversion`
[01:22:53]
<rodinux> I am on fix_php branch... with 2.1 helpers
[01:23:43]
<Aleks (he/him/il/lui)> then super confused why it would still refer to 7.4, is it happening on the CI ?
[01:23:56]
<Aleks (he/him/il/lui)> otherwise i'd `grep -nr php_version /etc/yunohost/apps/zabbix/settings.yml`
[01:25:57]
<rodinux> grep -nr php\_version /etc/yunohost/apps/zabbix/settings.yml
28:php\_version: '7.4'
[01:26:01]
<rodinux> wtf
[01:27:42]
<rodinux> I have try this
```
# Create a PHP-FPM config (with conf/extra_php-fpm.conf being appended to it)
php_version=8.2
ynh_app_setting_set_default --key="php_version" --value="$php_version"
php_process_management=dynamic
ynh_app_setting_set_default --key="php_process_management" --value="$php_process_management"
php_start_servers=2
ynh_app_setting_set_default --key="php_start_servers" --value="$php_start_servers"
php_min_spare_servers=1
ynh_app_setting_set_default --key="php_min_spare_servers" --value="$php_min_spare_servers"
php_max_spare_servers=3
ynh_app_setting_set_default --key="php_min_spare_servers" --value="$php_max_spare_servers"
php_slowlog="/var/log/nginx/$app.slow.log"
ynh_app_setting_set_default --key="php_slowlog" --value="$php_slowlog"
php_request_slowlog_timeout=5s
ynh_app_setting_set_default --key="php_request_slowlog_timeout" --value="$php_request_slowlog_timeout"
php_chdir="/usr/share/zabbix"
ynh_app_setting_set_default --key="php_chdir" --value="$php_chdir"
php_catch_workers_output=yes
ynh_app_setting_set_default --key="php_catch_workers_output" --value="$php_catch_workers_output"
timezone=$(cat /etc/timezone)
ynh_app_setting_set_default --key="timezone" --value="$timezone"
ynh_config_add_phpfpm
[01:28:56]
<Aleks (he/him/il/lui)> urhg but why would you try to define php_version manually...
[01:30:14]
<Aleks (he/him/il/lui)> also you don't need to explicitly create the variable when using `ynh_app_setting_set_default`, the point is that it's a one liner and it will initialize the var (if it's not already defined) ... because if the admin changed the value, you don't want to savagely override the existing setting that it's the bash env ...
[01:30:41]
<Aleks (he/him/il/lui)> so tl;dr don't write
```bash
php_process_management=dynamic
ynh_app_setting_set_default --key="php_process_management" --value="$php_process_management"
```
but
```bash
ynh_app_setting_set_default --key="php_process_management" --value="dynamic"
```
[01:33:23]
<rodinux> same for the other lines ?
[01:33:44]
<Aleks (he/him/il/lui)> yes
[01:49:30]
<rodinux> well Is really a mistery
```
51952 WARNING Variable $php_max_spare_servers wasn't initialized when trying to replace __PHP_MAX_SPARE_SERVERS__ in /etc/php/7.4/fpm/pool.d/zabbix.conf
[01:50:20]
<Aleks (he/him/il/lui)> (that's probably not why your php_version setting it set to 7.4 though, if you can't reproduce the issue on CI i would guess your install was not properly upgraded somehow and therefore the php_version setting was stuck to 7.4 idk)
[01:50:48]
<rodinux> https://ci-apps-dev.yunohost.org/ci/job/13440
[01:50:55]
<Aleks (he/him/il/lui)> cf
```
php_max_spare_servers=3
ynh_app_setting_set_default --key="php_min_spare_servers" --value="$php_max_spare_servers"
```
bad copy pasta, you had `--key="php_min_spare_servers"` instead of max...
[01:53:41]
<rodinux> pfff, thanks
[01:56:53]
<rodinux> ```
51702 WARNING /usr/share/yunohost/helpers.v2.1.d/php: line 133: php-fpm7.4: command not found
51757 WARNING The new configuration broke php-fpm?
52360 ERROR Unable to install zabbix: An error occurred inside the app installation script : The new configuration broke php-fpm?
[01:57:46]
<Aleks (he/him/il/lui)> do you have the full logs
[01:58:17]
<rodinux> https://paste.yunohost.org/raw/zubapohawi
[02:02:07]
<Aleks (he/him/il/lui)> hmmmm that looks like a bug in the core, it does set the php_version setting to 8.2 initially, but then comes the install of the packages in the "extras" thing and because the list doesn't contain any php stuff, it sets the php_version back to the default value of 7.4 but like uuuuuuuuuuuuuuuuuuuuuuuh why was it working before
[02:03:29]
<rodinux> It is strange, before changing I could install on my local server... but yes, it seems something crazy with the extra packages...
[02:03:30]
<Aleks (he/him/il/lui)> or it's a bug in 2.1 and no other app has this specific case ?
[02:05:46]
<rodinux> in the doc they say
Some OS distributions (in particular, Debian-based distributions) provide their own Zabbix packages. These packages are not supported by Zabbix and may be outdated or missing the latest features and bug fixes. It is recommended to use only official packages from the Zabbix Official Repository. If you previously installed Zabbix from your operating system's repository, see the steps for upgrading Zabbix packages from OS repositories.
[02:07:42]
<Aleks (he/him/il/lui)> jesus ...
https://github.com/YunoHost/yunohost/blob/dev/helpers/helpers.v2.1.d/php#L22
vs
https://github.com/YunoHost/yunohost/blob/dev/helpers/helpers.v1.d/php
[02:08:19]
<Aleks (he/him/il/lui)> so there's indeed a bug but it didn't happen in helpers 2.0 because the default php version happens to be 8.2 but in 2.1 it's 7.4 🤦♂️
[02:08:31]
<Aleks (he/him/il/lui)> so like the typo cancels the bug
[02:08:42]
<Aleks (he/him/il/lui)> jesus let met patch this
[02:08:57]
<Aleks (he/him/il/lui)> though propagating the fix to the CI will take some time urhg
[02:09:33]
<rodinux> yep ! thanks you found the issue !!
[02:09:53]
<Aleks (he/him/il/lui)> *you* found the issue 😅
[02:11:06]
<rodinux> moi aussi j'ai envie de tout c****r en ce moment
[02:15:44]
<rodinux> Ok I go to close my eyes and sleep a bit...
[02:20:18]
<rodinux> If I want try locally, it will be juste chnage this default php_version in `yunohost/helpers/helpers.v2.1.d/php` ? or it needs a build ?
[02:21:47]
<Aleks (he/him/il/lui)> as a temporary workaround yes you can just tweak the local `helpers.v2.1.d/php`
[02:22:27]
<Aleks (he/him/il/lui)> (or upgrade to 12.1.27 which i just released if you can)
[02:24:33]
<Aleks (he/him/il/lui)> i'm building new base image for the app CI
[02:32:44]
<Aleks (he/him/il/lui)> >Error: Failed instance creation: Failed getting remote image info: Failed getting image: The requested image couldn't be found
love it, especially considering ci-apps *does* find it ~_~
[02:33:47]
<Aleks (he/him/il/lui)> yolorebooting ci-apps-dev
[02:35:14]
<Aleks (he/him/il/lui)> https://nah.re/yolo/audio/doesntwork.ogg
[02:41:01]
<Yunohost Git/Infra notifications> App helloworld stays at level 4 in job [#22700](https://ci-apps.yunohost.org/ci/job/22700)
[02:41:58]
<Aleks (he/him/il/lui)> thank god it found the image
[02:41:59]
<Aleks (he/him/il/lui)> https://nah.re/yolo/audio/itworks.ogg
[02:42:22]
<Aleks (he/him/il/lui)> https://ci-apps-dev.yunohost.org/ci/job/13440
[02:45:25]
<Aleks (he/him/il/lui)> and then fails at something unrelated to php so that's progress i suppose:
```text
100782 INFO INFO - Link YunoHost template to Zabbix server
100782 INFO WARNING - ✗ ERROR: Failed to link templates: Failed to send request to https://sub.domain.tld/api_jsonrpc.php (host.massadd) with params {'templates': [{'templateid': '10673'}], 'hosts': [{'hostid': '10084'}]}
```
[02:47:31]
<Aleks (he/him/il/lui)> ah install on sub path works :O
[03:00:06]
<Yunohost Git/Infra notifications> [apps] alexAubin pushed to paheko-logo: Update paheko logo (more appropriate square-ish format, from the Github org) ([266d118a](https://github.com/YunoHost/apps/commit/266d118a7d2b80ba6e1ca07f69d7b8cb3e4a75a9))
[03:00:43]
<Yunohost Git/Infra notifications> [apps] alexAubin opened [pull request #3155](https://github.com/YunoHost/apps/pull/3155): Update paheko logo (more appropriate square-ish format, from their Github org)
[03:01:11]
<Yunohost Git/Infra notifications> [apps] alexAubin pushed to main: Update paheko logo (more appropriate square-ish format, from the Github org) (#3155) ([755173a5](https://github.com/YunoHost/apps/commit/755173a5c8d4f77abd09392abef69c9c1152d856))
[03:01:16]
<Yunohost Git/Infra notifications> [apps] alexAubin merged [pull request #3155](https://github.com/YunoHost/apps/pull/3155): Update paheko logo (more appropriate square-ish format, from their Github org)
[03:01:23]
<Yunohost Git/Infra notifications> [apps] alexAubin deleted branch paheko-logo
[03:01:51]
<rodinux> yep, nice
[03:04:19]
<rodinux> so I could try on local install and upgrade (so also backup) zabbix after chnaging the helpersv2.1.d/php DEFAULT_PHP_VERSION=8.2 and it works...
[03:04:24]
<Yunohost Git/Infra notifications> [apps] alexAubin pushed to main: Add tunarr to wishlist (#3147) ([cb730789](https://github.com/YunoHost/apps/commit/cb730789f209cd0804787b79d1503dc9943a1c9d))
[03:04:25]
<Yunohost Git/Infra notifications> [apps] alexAubin merged [pull request #3147](https://github.com/YunoHost/apps/pull/3147): Add tunarr to wishlist
[03:04:26]
<Yunohost Git/Infra notifications> [apps] alexAubin deleted branch add-to-wishlist-tunarr
[03:09:53]
<Yunohost Git/Infra notifications> [apps] alexAubin merged [pull request #3149](https://github.com/YunoHost/apps/pull/3149): Add Notifuse to wishlist
[03:09:54]
<Yunohost Git/Infra notifications> [apps] alexAubin deleted branch add-to-wishlist-notifuse
[03:09:54]
<Yunohost Git/Infra notifications> [apps] alexAubin pushed to main: Add Notifuse to wishlist (#3149) ([c71a4cb1](https://github.com/YunoHost/apps/commit/c71a4cb1800f2b3e4b8e133689b9d82ed3020054))
[07:50:00]
<Yunohost Git/Infra notifications> [apps] OniriCorpe [commented](https://github.com/YunoHost/apps/pull/3142#issuecomment-3368838196) on [issue #3142](https://github.com/YunoHost/apps/pull/3142) Mark civicrm_drupal as broken: I tagged the issue with linter warning, so our bit will automatically flag it as broken
Thanks for the help
[07:50:01]
<Yunohost Git/Infra notifications> [apps] OniriCorpe closed [pull request #3142](https://github.com/YunoHost/apps/pull/3142): Mark civicrm_drupal as broken
[08:27:23]
<Yunohost Git/Infra notifications> ewilly edited repository findmydevice_ynh: Find My Device Server package for YunoHost https://github.com/YunoHost-Apps/findmydevice_ynh
[08:57:29]
<Yunohost Git/Infra notifications> App woodpecker failed all tests in job [#23143](https://ci-apps.yunohost.org/ci/job/23143) !
[11:03:52]
<Yunohost Git/Infra notifications> [jellyfin_ynh] Thovi98 [commented](https://github.com/YunoHost-Apps/jellyfin_ynh/pull/203#issuecomment-3368974352) on [issue #203](https://github.com/YunoHost-Apps/jellyfin_ynh/pull/203) Actually fix ffmpeg dependency breaking installs: Thanks for your pr Why did you add the socket to the nginx? To fix something?
[11:08:08]
<Yunohost Git/Infra notifications> [jellyfin_ynh] DeepStateNine [commented](https://github.com/YunoHost-Apps/jellyfin_ynh/pull/203#issuecomment-3368977198) on [issue #203](https://github.com/YunoHost-Apps/jellyfin_ynh/pull/203) Actually fix ffmpeg dependency breaking installs: > Thanks for your pr Why did you add the socket to the nginx? To fix something? Apologies for not doing that in a diff...
[11:25:38]
<Yunohost Git/Infra notifications> [borg_ynh] BrunoSpy [commented](https://github.com/YunoHost-Apps/borg_ynh/issues/220#issuecomment-3368987588) on [issue #220](https://github.com/YunoHost-Apps/borg_ynh/issues/220) Unable to upgrade from 1.4.1-ynh1 to 1.4.1-ynh2: Hi,
here is the output you asked :
on_calendar=*-*-*0:00:00
[11:35:59]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent [commented](https://github.com/YunoHost-Apps/borg_ynh/issues/220#issuecomment-3368994226) on [issue #220](https://github.com/YunoHost-Apps/borg_ynh/issues/220) Unable to upgrade from 1.4.1-ynh1 to 1.4.1-ynh2: I think there is a problem with that value.
If you try running this command:
bash
systemd-analyze calendar "*-*-*0:...
[11:46:24]
<Yunohost Git/Infra notifications> [borg_ynh] BrunoSpy closed [issue #220](https://github.com/YunoHost-Apps/borg_ynh/issues/220): Unable to upgrade from 1.4.1-ynh1 to 1.4.1-ynh2
[11:46:25]
<Yunohost Git/Infra notifications> [borg_ynh] BrunoSpy [commented](https://github.com/YunoHost-Apps/borg_ynh/issues/220#issuecomment-3369001186) on [issue #220](https://github.com/YunoHost-Apps/borg_ynh/issues/220) Unable to upgrade from 1.4.1-ynh1 to 1.4.1-ynh2: Info: [####################] > Upgrade of borg completed
Replacing the initial value with "*-*-* 00:00:00" (which was t...
[12:53:06]
<Yunohost Git/Infra notifications> [jellyfin_ynh] ericgaspar edited [pull request #204](https://github.com/YunoHost-Apps/jellyfin_ynh/pull/204): document configs that break Swiftfin
[13:12:34]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to use-source-file: Add editorconfig ([13184c4c](https://github.com/YunoHost-Apps/borg_ynh/commit/13184c4cf084c1ded717e7c77277f9fd583071db))
[13:12:35]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to use-source-file: WIP: support of borg commands when using yunohost app shell ([a4ab03b2](https://github.com/YunoHost-Apps/borg_ynh/commit/a4ab03b2df6910275ed940c5fe6b4ffaa2160487))
[13:20:59]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to use-source-file: WIP: support of borg commands when using yunohost app shell ([24bef318](https://github.com/YunoHost-Apps/borg_ynh/commit/24bef3184428941cec93ca8eee49bda335d5cc44))
[13:25:32]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent opened [pull request #222](https://github.com/YunoHost-Apps/borg_ynh/pull/222): Simplify the use of borg command
[13:57:08]
<Yunohost Git/Infra notifications> [syncthing_ynh] Thovi98 merged [pull request #219](https://github.com/YunoHost-Apps/syncthing_ynh/pull/219): Upgrade to helpers2.1
[14:02:17]
<tituspijean> https://aria.im/_bifrost/v1/media/download/AajGtokA4Pnwyk8yvAsaGtb6v4qA-jr2QkCNMjmYltjyYgRXnwS2x4LM-ymKhbTIp-rKLswT7kiFu4tzJ-MO1LRCeZudSJvQAG1hdHJpeC5vcmcvU0dHcmRFQlFoWVBubWVEWUVSbmdNZ2pJ
[14:07:43]
<Yunohost Git/Infra notifications> App mygpo rises from level 0 to 7 in job [#23148](https://ci-apps.yunohost.org/ci/job/23148) !
[15:08:31]
<Yunohost Git/Infra notifications> [jellyfin_ynh] tituspijean pushed to testing: document configs that break Swiftfin (#204) Co-authored-by: Félix Piédallu <felix@piedallu.me> Co-authored-by: tituspij... ([737a0fe2](https://github.com/YunoHost-Apps/jellyfin_ynh/commit/737a0fe208ab2144a04c50878996df0bcc3fa9c5))
[15:08:32]
<Yunohost Git/Infra notifications> [jellyfin_ynh] tituspijean merged [pull request #204](https://github.com/YunoHost-Apps/jellyfin_ynh/pull/204): document configs that break Swiftfin
[15:09:20]
<Yunohost Git/Infra notifications> [jellyfin_ynh] tituspijean edited [pull request #203](https://github.com/YunoHost-Apps/jellyfin_ynh/pull/203): Actually fix ffmpeg dependency breaking installs, add websockets
[15:09:23]
<Yunohost Git/Infra notifications> [jellyfin_ynh] tituspijean edited [pull request #203](https://github.com/YunoHost-Apps/jellyfin_ynh/pull/203): Actually fix ffmpeg dependency breaking installs, add websockets
[15:55:27]
<Yunohost Git/Infra notifications> App piwigo rises from level 7 to 8 in job [#23154](https://ci-apps.yunohost.org/ci/job/23154) !
[16:07:14]
<Yunohost Git/Infra notifications> [syncthing_ynh] ericgaspar merged [pull request #227](https://github.com/YunoHost-Apps/syncthing_ynh/pull/227): Testing
[16:45:16]
<rodinux> Well, I don't know how to resolve this... with zabbix package, few month ago we could upgrade to version 7.0 but a regression comes on a pip package, so I found how resolve it, but what to update from oldest version the script backup crash because missing this... Or the solution could be
[16:45:33]
<rodinux> waiting the PR o
[16:45:59]
<rodinux> waiting the PR for this fix on the package zabbix-cli...
[16:48:56]
<Aleks (he/him/il/lui)> can you explain why the backup fails for existing installs ?
[16:52:06]
<rodinux> Because of the same issue I found with the install, the package zabbix-cli have an issue and I resolved it with a issue PR proposed
```
python3 -m venv /usr/share/zabbix-cli
/usr/share/zabbix-cli/bin/pip install git+https://github.com/sur5r/zabbix-cli@fix311
[16:53:24]
<Aleks (he/him/il/lui)> do you have a log of a failing backup
[16:53:44]
<rodinux> So same needed in the backup of the oldest version or wait if the PR could be merged
[16:56:42]
<rodinux> the log from the CI that can't install the version `6.4~ynh1` https://paste.yunohost.org/raw/ililadisip
[16:57:53]
<rodinux> But take care, the app was broken so also the actual version `7.0.1~ynh1` will failed with the same issue
[16:58:11]
<rodinux> https://github.com/unioslo/zabbix-cli/pull/312
[16:58:23]
<Aleks (he/him/il/lui)> the pip dependency issue can probably be addressed by patching the requirements.txt to pin a specific version of the `rich` lib but you were mentionning something about backup from older versions crashing ..?
[17:00:36]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to use-source-file: WIP: support of borg commands when using yunohost app shell ([ab06d776](https://github.com/YunoHost-Apps/borg_ynh/commit/ab06d776c5582bfd4e29b039edf6ad2bf38555b3))
[17:01:19]
<rodinux> Imagine scenario of an existing version of `6.4` or `7.0~ynh1`, there is also a need in the script upgrade (sorry no backup)
[17:04:47]
<rodinux> https://github.com/YunoHost-Apps/zabbix_ynh/blob/8d860c312133ba62fe022959c27a5bd1ff81a302/scripts/upgrade#L118-L122
[17:09:04]
<rodinux> Have you seen the workaround ? `typer started lazy-loading rich_utils since 0.17.0, so force-load it here`
[17:11:54]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to use-source-file: Cleanup code ([b89ac090](https://github.com/YunoHost-Apps/borg_ynh/commit/b89ac0902de722d44efa060d7f1b5a12aae343c0))
[17:12:13]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent edited [pull request #222](https://github.com/YunoHost-Apps/borg_ynh/pull/222): Simplify the use of borg command
[17:17:27]
<rodinux> Hummm, it seems happening something in the zabbix-cli repo... Perhaps they will fix the package and so it will works again ??
[17:29:52]
<rodinux> hope someone will approve the workflow https://github.com/unioslo/zabbix-cli/actions/runs/18122808442
[17:34:17]
<Yunohost Git/Infra notifications> [jellyfin_ynh] tituspijean merged [pull request #203](https://github.com/YunoHost-Apps/jellyfin_ynh/pull/203): Actually fix ffmpeg dependency breaking installs, add websockets
[17:34:17]
<Yunohost Git/Infra notifications> [jellyfin_ynh] tituspijean pushed to testing: Actually fix ffmpeg dependency breaking installs, add websockets (#203) Co-authored-by: Félix Piédallu <felix@piedallu.... ([d814a375](https://github.com/YunoHost-Apps/jellyfin_ynh/commit/d814a37562b90f4d416ee83be94c7248a1d354da))
[18:33:00]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to use-source-file: Fix: list of backups in config panel ([459bcffc](https://github.com/YunoHost-Apps/borg_ynh/commit/459bcffc1b53809969dbd9ab3758dd6b3cf93c3d))
[19:00:41]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to use-source-file: Add a comment block to the borg wrapper, and rename it. ([40bf05b6](https://github.com/YunoHost-Apps/borg_ynh/commit/40bf05b62748367dbd6975c481fc6f851d5739a3))
[19:01:47]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent edited [pull request #222](https://github.com/YunoHost-Apps/borg_ynh/pull/222): Simplify the use of borg command
[19:01:52]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent edited [pull request #222](https://github.com/YunoHost-Apps/borg_ynh/pull/222): Simplify the use of borg command
[19:03:06]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent edited [pull request #222](https://github.com/YunoHost-Apps/borg_ynh/pull/222): Simplify the use of borg command
[19:03:06]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent edited [pull request #222](https://github.com/YunoHost-Apps/borg_ynh/pull/222): Simplify the use of borg command
[19:04:25]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent just made [pull request #222](https://github.com/YunoHost-Apps/borg_ynh/pull/222) ready for review: Simplify the use of borg command
[19:08:37]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to suffix-files-cache: suffix files cache for better performance According to the documentation: > BORG_FILES_CACHE_SUFFIX > When set to a ... ([c465611d](https://github.com/YunoHost-Apps/borg_ynh/commit/c465611d31bc7f52a8b9bfa826feadf7eb308e0b))
[19:18:53]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent edited [pull request #222](https://github.com/YunoHost-Apps/borg_ynh/pull/222): Simplify the use of borg command
[19:18:54]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent edited [pull request #222](https://github.com/YunoHost-Apps/borg_ynh/pull/222): Simplify the use of borg command
[19:20:47]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent [commented](https://github.com/YunoHost-Apps/borg_ynh/pull/221#issuecomment-3369268715) on [issue #221](https://github.com/YunoHost-Apps/borg_ynh/pull/221) Testing: bump
[19:20:55]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to use-source-file: WIP: support of borg commands when using yunohost app shell ([b9bfead5](https://github.com/YunoHost-Apps/borg_ynh/commit/b9bfead57546a2fecf65d87f6320861c33309782))
[19:20:56]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to use-source-file: Cleanup code ([279e0c0d](https://github.com/YunoHost-Apps/borg_ynh/commit/279e0c0d52e2e3f6f1627291b71e55c19f51b631))
[19:20:59]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to use-source-file: Fix: list of backups in config panel ([266e2ea8](https://github.com/YunoHost-Apps/borg_ynh/commit/266e2ea881d6d18d7b7ef6d9f8ca80f2cd52e38b))
[19:21:00]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to use-source-file: Add a comment block to the borg wrapper, and rename it. ([6001fc9c](https://github.com/YunoHost-Apps/borg_ynh/commit/6001fc9c6bccfd69d7671dcffb94380f373bd3ee))
[20:23:54]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to use-source-file: Update documentation ([245b7ccb](https://github.com/YunoHost-Apps/borg_ynh/commit/245b7ccb47f881944124523e93e09299d34b0014))
[21:33:48]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to use-source-file: By default strictly check the host ([02526aae](https://github.com/YunoHost-Apps/borg_ynh/commit/02526aae45cd0447582fda1ca7779eaa92db3388))
[21:34:22]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to suffix-files-cache: suffix files cache for better performance According to the documentation: > BORG_FILES_CACHE_SUFFIX > When set to a ... ([537fe856](https://github.com/YunoHost-Apps/borg_ynh/commit/537fe856eb99d1a5ac0a582cd3e7f36fb558558d))
[21:51:13]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent [commented](https://github.com/YunoHost-Apps/borg_ynh/pull/222#issuecomment-3369354608) on [issue #222](https://github.com/YunoHost-Apps/borg_ynh/pull/222) Simplify the use of borg command: changelog # 💫 New features in 1.4.1~ynh3 ## Borg commands simplified Prior to this version, you had to copy the rep...
[21:54:18]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to use-source-file: Add changelog message for 1.4.1~ynh3 ([b7018e0a](https://github.com/YunoHost-Apps/borg_ynh/commit/b7018e0a996c5783dde63a9a4364dfea6f86e83e))
[21:55:11]
<Yunohost Git/Infra notifications> [borg_ynh] fflorent pushed to use-source-file: Add changelog message for 1.4.1~ynh3 ([bed926c3](https://github.com/YunoHost-Apps/borg_ynh/commit/bed926c3a2306a84cd5ba4b8035216247b6a6d73))
[22:26:01]
<Yunohost Git/Infra notifications> [piped_ynh] yunohost-bot opened [pull request #236](https://github.com/YunoHost-Apps/piped_ynh/pull/236): Upgrade to v2025.10.02
[22:27:53]
<Yunohost Git/Infra notifications> [searxng_ynh] yunohost-bot opened [pull request #433](https://github.com/YunoHost-Apps/searxng_ynh/pull/433): Upgrade to v2025.10.05
[22:34:09]
<Yunohost Git/Infra notifications> Autoupdater just ran, here are the results:
- 43 pending update PRs
- 23 new apps PRs: discourse, fossflow, glitchsoc, it-tools, itflow, jackett, jellyfin-vue, lemmy, mastofessb, minetest, overleaf, piped, scratch, searxng, sparkyfitness, tandoor, teampass, terraforming-mars, trilium, ttrss, vert, webmin, yellow
- 10 failed apps updates: autobd, bonfire, digiscreen, digisteps, digitools, digitranscode, digiwords, litechat, loops, streams
See the full log here: https://paste.yunohost.org/raw/emowaqizil
Autoupdate dashboard: https://apps.yunohost.org/dash?filter=autoupdate
[23:11:52]
<Yunohost Git/Infra notifications> App airsonic stays broken (level 0) in job [#23158](https://ci-apps.yunohost.org/ci/job/23158)
[23:24:55]
<Yunohost Git/Infra notifications> App nomad stays broken (level 0) in job [#23163](https://ci-apps.yunohost.org/ci/job/23163)
[23:56:26]
<Yunohost Git/Infra notifications> App rspamdui rises from level 7 to 8 in job [#23166](https://ci-apps.yunohost.org/ci/job/23166) !