bundlewrap/bundles/kodi/items.py

21 lines
428 B
Python
Raw Normal View History

2020-10-03 11:36:12 +00:00
files = {
'/etc/systemd/system/kodi.service': {
'triggers': {
'action:systemd-reload',
'svc_systemd:kodi:restart',
},
},
'/etc/X11/Xwrapper.config': {},
}
svc_systemd = {
'kodi': {
'needs': {
'file:/etc/systemd/system/kodi.service',
'file:/etc/X11/Xwrapper.config',
'pkg_apt:kodi',
'user:kodi',
},
},
}