MM crawler: skip lost+found during rsync crawl
The rsync based crawler has two excludes hardcoded: cmd = "rsync --temp-dir=/tmp -r --exclude=.snapshot --exclude='*.~tmp~'" To avoid failures during rsync crawling this adds 'lost+found' to the exclude list via the configuration file. Signed-off-by: Adrian Reber <adrian@lisas.de>
This commit is contained in:
parent
47242c6716
commit
9e13fede63
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ CHECK_SESSION_IP = True
|
|||
|
||||
# Specify additional rsync parameters for the crawler
|
||||
# # --timeout 14400: abort rsync crawl after 4 hours
|
||||
CRAWLER_RSYNC_PARAMETERS = '--no-motd --timeout 14400'
|
||||
CRAWLER_RSYNC_PARAMETERS = '--no-motd --timeout 14400 --exclude=lost+found'
|
||||
|
||||
###
|
||||
# Configuration options used by the crons
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue