mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
fix: skip the integrity check for nextcloud-init-sync.lock
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>
This commit is contained in:
parent
8383be8f67
commit
d80be49ed7
1 changed files with 3 additions and 2 deletions
|
|
@ -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.
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue