bundlewrap/bundles/stromzaehler/metadata.py
2021-10-28 04:45:22 +02:00

24 lines
572 B
Python

defaults = {
'apt': {
'packages': {
'curl': {},
'gpiod': {},
},
},
'systemd': {
'units': {
'stromzaehler.service': {
'Unit': {
'Description': 'stromzaehler',
'After': 'network.target',
},
'Service': {
'ExecStart': '/opt/stromzaehler',
},
'Install': {
'WantedBy': {'multi-user.target'},
},
},
},
},
}