Merge pull request #48302 from nextcloud/backport/48268/stable30

[stable30] fix: skip the integrity check for nextcloud-init-sync.lock
This commit is contained in:
Andy Scherzinger 2024-09-23 21:01:40 +02:00 committed by GitHub
commit 2be8b76834
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,10 +24,11 @@ class ExcludeFileByNameFilterIterator extends \RecursiveFilterIterator {
*/
private $excludedFilenames = [
'.DS_Store', // Mac OS X
'Thumbs.db', // Microsoft Windows
'.directory', // Dolphin (KDE)
'.webapp', // Gentoo/Funtoo & derivatives use a tool known as webapp-config to manage web-apps.
'.rnd',
'.webapp', // Gentoo/Funtoo & derivatives use a tool known as webapp-config to manage web-apps.
'Thumbs.db', // Microsoft Windows
'nextcloud-init-sync.lock' // Used by nextcloud/docker to prevent running the initialization script on multiple containers at the same time: https://github.com/nextcloud/docker/issues/2299.
];
/**