diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2024-09-23 17:48:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-23 17:48:40 +0200 |
commit | 7ddad46137c17e3c272adbcf02ca29d7e8b2d6bd (patch) | |
tree | 2a41f4051519209eef71755c5a3ea21e038fd2f9 /lib | |
parent | a8ee7424ad12f923b681856b1e282905a10a081e (diff) | |
parent | 6e870c02063ef05537b29b256731bb29ed03322c (diff) | |
download | nextcloud-server-7ddad46137c17e3c272adbcf02ca29d7e8b2d6bd.tar.gz nextcloud-server-7ddad46137c17e3c272adbcf02ca29d7e8b2d6bd.zip |
Merge pull request #48268 from nextcloud/debt/noid/ignore-docker-image-lock-file
fix: skip the integrity check for nextcloud-init-sync.lock
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php b/lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php index e2e68008a35..d28eae2740b 100644 --- a/lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php +++ b/lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php @@ -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. ]; /** |