Results 2867 comments of MichaIng

`ifplugd` can be configured to run commands if cables are connected or disconnected. We can also check for cable connectivity via `ethtool`. However, the problem really is that I'm not...

I'll mark this as closed. Feel free to reopen if issue persists.

Verified: FIFO and Round Robin are both generally not permitted on Odroid N2 for whatever reason. On x86_64 VMs and Raspberry Pi it works without issues: ```console root@OdroidN2:~# chrt -f...

Just tested on upgrade from NC26 Beta 4 to Beta 5. Before, the admin panel shows: > Apps missing compatible version > - [Impersonate ↗](https://apps.nextcloud.com/apps/impersonate) > - [Notes ↗](https://apps.nextcloud.com/apps/notes) >...

I don't get it. The list after the upgrade has finished is generated here, based on `incompatibleAppDisabled` events: https://github.com/nextcloud/server/blob/6eb08ef/core/ajax/update.php#L163-L165 Same for the CLI upgrade: https://github.com/nextcloud/server/blob/6eb08ef/core/Command/Upgrade.php#L194-L196 The event is emitted here,...

Found it: - All app store apps, including automatically disabled apps (i.e. the incompatible ones), are upgraded here: https://github.com/nextcloud/server/blob/6eb08efe430c3c80f41616cc1c9c2c1fb3ccd8aa/lib/private/Updater.php#L280-L285 - The automatically disabled/incompatible ones are re-enabled afterwards here, regardless whether...

### Next test NC26 beta 5 => RC1 ```php 'app_install_overwrite' => array ( 0 => 'ransomware_protection', 1 => 'contacts', 2 => 'calendar', 3 => 'tasks', 4 => 'spreed', 5 =>...

Personally I always see the same apps not declaring latest NC version compatibility on upgrade, so that I like the overrides staying in place. I never had an issue with...

Any idea what "Conventional Commits" does not like about the commits text? I added type and scope, so that should be fine: https://www.conventionalcommits.org/en/v1.0.0/ Probably something for the `dev` documentation, and...

Ah, it says "types other than `fix:` and `feat:` are allowed", so I thought any type is valid. But it seams that it is one of this array by default:...