bundlewrap/bundles/scansnap/metadata.py

23 lines
541 B
Python
Raw Normal View History

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