bundlewrap/bundles/kodi/items.py

26 lines
535 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',
},
},
2020-10-03 16:36:48 +00:00
'/etc/X11/Xwrapper.config': {
'needs': {
'pkg_apt:xserver-xorg-legacy',
},
},
2020-10-03 11:36:12 +00:00
}
svc_systemd = {
'kodi': {
'needs': {
'file:/etc/systemd/system/kodi.service',
'file:/etc/X11/Xwrapper.config',
'pkg_apt:kodi',
2020-10-03 16:36:48 +00:00
'pkg_apt:xinit',
2020-10-03 11:36:12 +00:00
'user:kodi',
},
},
}