diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2024-09-22 16:19:48 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2024-09-22 17:48:43 +0200 |
commit | 6e870c02063ef05537b29b256731bb29ed03322c (patch) | |
tree | d7450a499f65384dc09c244fb3d5ede441d5a1bf /lib/private | |
parent | 77c1db0cd64a11aa21425f663cfe9fdff988ad58 (diff) | |
download | nextcloud-server-6e870c02063ef05537b29b256731bb29ed03322c.tar.gz nextcloud-server-6e870c02063ef05537b29b256731bb29ed03322c.zip |
fix: skip the integrity check for nextcloud-init-sync.lockdebt/noid/ignore-docker-image-lock-file
nextcloud-init-sync.lock is used by nextcloud/docker to prevent running the initialization script on multiple containers at the same time.
Ref: https://github.com/nextcloud/docker/issues/2299.
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'lib/private')
-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. ]; /** |