bundlewrap/bundles/scansnap/metadata.py

21 lines
504 B
Python
Raw Normal View History

defaults = {
'apt': {
'packages': {
'sane-utils': {},
'scanbd': {},
'imagemagick': {},
'ocrmypdf': {},
'tesseract-ocr-deu': {},
},
},
'backups': {
'paths': {
2022-01-13 14:54:49 +00:00
'/srv/scansnap',
},
},
2021-04-21 16:20:47 +00:00
'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',
2021-04-21 16:20:47 +00:00
},
}