Franziska Kunsmann
9e07af289e
All checks were successful
bundlewrap/pipeline/head This commit looks good
20 lines
504 B
Python
20 lines
504 B
Python
defaults = {
|
|
'apt': {
|
|
'packages': {
|
|
'sane-utils': {},
|
|
'scanbd': {},
|
|
'imagemagick': {},
|
|
'ocrmypdf': {},
|
|
'tesseract-ocr-deu': {},
|
|
},
|
|
},
|
|
'backups': {
|
|
'paths': {
|
|
'/src/scansnap',
|
|
},
|
|
},
|
|
'cron': {
|
|
# Automatically remove files which are older than 14 days
|
|
'scansnap_cleanup': '00 00 * * * root /usr/bin/find /srv/scansnap/ -mindepth 1 -mtime +14 -delete',
|
|
},
|
|
}
|