bundles/kodi: introduce
This commit is contained in:
parent
fc44a9cd69
commit
32fd2f7a7b
5 changed files with 88 additions and 0 deletions
33
bundles/kodi/items.py
Normal file
33
bundles/kodi/items.py
Normal file
|
@ -0,0 +1,33 @@
|
|||
files = {
|
||||
'/etc/systemd/system/kodi.service': {
|
||||
'triggers': {
|
||||
'action:systemd-reload',
|
||||
'svc_systemd:kodi:restart',
|
||||
},
|
||||
},
|
||||
'/etc/systemd/system/pulseaudio.service': {
|
||||
'triggers': {
|
||||
'action:systemd-reload',
|
||||
'svc_systemd:pulseaudio: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',
|
||||
'svc_systemd:pulseaudio',
|
||||
},
|
||||
},
|
||||
'pulseaudio': {
|
||||
'needs': {
|
||||
'file:/etc/systemd/system/pulseaudio.service',
|
||||
'pkg_apt:pulseaudio',
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue