20 lines
492 B
Python
20 lines
492 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/ -mtime +14 -delete',
|
|
},
|
|
}
|