bundlewrap/bundles/systemd/metadata.py
mwiegand 65ef24f403 wip
2021-07-13 16:17:38 +02:00

26 lines
549 B
Python

defaults = {
'systemd': {
'units': {},
'services': {},
}
}
@metadata_reactor.provides(
'systemd/units',
)
def services(metadata):
units = {}
for name, config in metadata.get('systemd/units').items():
if name.split('.')[-1] == 'service' and not config.get('Install/WantedBy'):
units[name] = {
'Install': {
'WantedBy': ['multi-user.target'],
}
}
return {
'systemd': {
'units': units,
}
}