bundlewrap/bundles/cron/items.py

42 lines
775 B
Python
Raw Normal View History

if node.os == 'arch':
service_name = 'cronie'
package_name = 'pkg_pacman:cronie'
else:
service_name = 'cron'
package_name = 'pkg_apt:cron'
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:',
},
},
}
svc_systemd = {
service_name: {
'needs': {
package_name,
},
},
}
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
}