bundlewrap/bundles/basic/items.py

28 lines
494 B
Python

# TODO support non-systemd systems
files = {
'/etc/default/locale': {
'content_type': 'mako',
'triggers': {
'action:locale-gen',
},
},
'/etc/hosts': {
'content_type': 'mako',
},
'/etc/locale.gen': {
'content_type': 'mako',
'triggers': {
'action:locale-gen',
},
},
'/etc/motd': {},
}
actions = {
'locale-gen': {
'triggered': True,
'command': 'locale-gen',
},
}