mirror of
https://github.com/nicolabs/ansible-role-dlna-audiostream.git
synced 2026-05-21 11:59:08 +02:00
+ specify rygel service user & group
This commit is contained in:
parent
cf7654ad4d
commit
29ed4f4ebd
|
|
@ -8,6 +8,8 @@ pulseaudio_users: []
|
||||||
# Change this to /home/<user>/.config/rygel.conf if you want to configure it for a given user.
|
# Change this to /home/<user>/.config/rygel.conf if you want to configure it for a given user.
|
||||||
# By default it configures Rygel system-wide (/etc/rygel.conf).
|
# By default it configures Rygel system-wide (/etc/rygel.conf).
|
||||||
rygel_conf_path: /etc/rygel.conf
|
rygel_conf_path: /etc/rygel.conf
|
||||||
|
rygel_user: root
|
||||||
|
rygel_group: root
|
||||||
|
|
||||||
# Name/template name of the default device and streams created by this role, as seen on the DLNA renderer.
|
# Name/template name of the default device and streams created by this role, as seen on the DLNA renderer.
|
||||||
# See http://rygel-project.org/doc/latest/rygel.conf.html for available variables to customize them.
|
# See http://rygel-project.org/doc/latest/rygel.conf.html for available variables to customize them.
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,8 @@ Description=Rygel DLNA server
|
||||||
After=syslog.target
|
After=syslog.target
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
User=rygel
|
User={{ rygel_user }}
|
||||||
Group=rygel
|
Group={{ rygel_group }}
|
||||||
ExecStart=/usr/bin/rygel
|
ExecStart=/usr/bin/rygel
|
||||||
# ExecStart=/usr/bin/wrap-dbus /usr/bin/rygel
|
# ExecStart=/usr/bin/wrap-dbus /usr/bin/rygel
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue