[#7208] exlude lost+found from the backups

Co-authored-by: Loic B. <lbndev@yahoo.fr>
This commit is contained in:
Gani Georgiev
2025-09-28 08:23:15 +03:00
parent e26905f8e2
commit 6b6d3b36d3
4 changed files with 9 additions and 2 deletions

View File

@@ -40,6 +40,9 @@ const (
LocalBackupsDirName string = "backups"
LocalTempDirName string = ".pb_temp_to_delete" // temp pb_data sub directory that will be deleted on each app.Bootstrap()
LocalAutocertCacheDirName string = ".autocert_cache"
// @todo consider removing after backups refactoring
lostFoundDirName string = "lost+found"
)
// FilesManager defines an interface with common methods that files manager models should implement.