Skip to content

Commit

Permalink
Merge pull request #48268 from nextcloud/debt/noid/ignore-docker-imag…
Browse files Browse the repository at this point in the history
…e-lock-file

fix: skip the integrity check for nextcloud-init-sync.lock
  • Loading branch information
nickvergessen committed Sep 23, 2024
2 parents a8ee742 + 6e870c0 commit 7ddad46
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
];

/**
Expand Down

0 comments on commit 7ddad46

Please sign in to comment.