diff options
author | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-06-20 12:02:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-20 12:02:23 +0200 |
commit | 2951a70fcba24417e2873e0fe00696ed185ecf8a (patch) | |
tree | cbbb4682ebab9022e3174ae16d2b4db4725b6638 | |
parent | 09261fca861d4900650f009cd47dd15802b184dc (diff) | |
download | nextcloud-server-2951a70fcba24417e2873e0fe00696ed185ecf8a.tar.gz nextcloud-server-2951a70fcba24417e2873e0fe00696ed185ecf8a.zip |
Update ExcludeFileByNameFilterIterator.php (#25184)
Gentoo & derivatives use a tool named webapp-config which places two files in a webapp-config manager web application:
1: .webapp tag with more detailed info on the configuration done by webapp-config
2: .webapp-appname with the list of files installed by the tool to be able to later only delete stuff that was installed (in case of upgrade) and updated configurations.
-rw-r--r-- | lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php b/lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php index 1f31e849446..5c72bfaa57c 100644 --- a/lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php +++ b/lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php @@ -39,6 +39,7 @@ class ExcludeFileByNameFilterIterator extends \RecursiveFilterIterator { '.DS_Store', // Mac OS X 'Thumbs.db', // Microsoft Windows '.directory', // Dolphin (KDE) + '.webapp', // Gentoo/Funtoo & derivatives use a tool known as webapp-config to manager wep-apps. ]; /** |