Skip to content

Commit 7ddad46

Browse files
Merge pull request #48268 from nextcloud/debt/noid/ignore-docker-image-lock-file
fix: skip the integrity check for nextcloud-init-sync.lock
2 parents a8ee742 + 6e870c0 commit 7ddad46

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)