bundlewrap/bundles/cron/items.py

27 lines
517 B
Python
Raw Normal View History

files = {
'/etc/crontab': {
'content_type': 'mako',
'context': {
'min': (node.magic_number%60),
},
},
}
2020-06-01 09:54:28 +00:00
directories = {
'/etc/cron.d': {
'purge': True,
2020-10-25 15:39:35 +00:00
'needs': {
'pkg_apt:',
},
},
}
2020-06-01 09:54:28 +00:00
for crontab, content in node.metadata.get('cron', {}).items():
files['/etc/cron.d/{}'.format(crontab)] = {
'source': 'cron_template',
'content_type': 'mako',
'context': {
'cron': content,
}
2020-06-01 09:54:28 +00:00
}