24 lines
572 B
Python
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'},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|