Skip to content

Commit 2be8b76

Browse files
Merge pull request #48302 from nextcloud/backport/48268/stable30
[stable30] fix: skip the integrity check for nextcloud-init-sync.lock
2 parents e452433 + d80be49 commit 2be8b76

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@ class ExcludeFileByNameFilterIterator extends \RecursiveFilterIterator {
2424
*/
2525
private $excludedFilenames = [
2626
'.DS_Store', // Mac OS X
27-
'Thumbs.db', // Microsoft Windows
2827
'.directory', // Dolphin (KDE)
29-
'.webapp', // Gentoo/Funtoo & derivatives use a tool known as webapp-config to manage web-apps.
3028
'.rnd',
29+
'.webapp', // Gentoo/Funtoo & derivatives use a tool known as webapp-config to manage web-apps.
30+
'Thumbs.db', // Microsoft Windows
31+
'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.
3132
];
3233

3334
/**

0 commit comments

Comments
 (0)