Created
February 10, 2021 00:13
-
-
Save gsdefender/155d00a0712c1b2a34e6ae9540022a16 to your computer and use it in GitHub Desktop.
Kodi systemd service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description = Kodi Media Center | |
# if you don't need the MySQL DB backend, this should be sufficient | |
After = systemd-user-sessions.service network.target sound.target | |
# if you need the MySQL DB backend, use this block instead of the previous | |
# After = systemd-user-sessions.service network.target sound.target mysql.service | |
# Wants = mysql.service | |
[Service] | |
User = kodi | |
Group = kodi | |
Type = simple | |
#PAMName = login # you might want to try this one, did not work on all systems | |
ExecStart = /usr/bin/xinit /usr/bin/dbus-launch --exit-with-session /usr/bin/kodi-standalone -- :0 -nolisten tcp vt7 | |
Restart = always | |
RestartSec = 5 | |
RuntimeMaxSec=345600 | |
[Install] | |
WantedBy = multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment