pulse-server: support absolute unix socket paths

If a unix socket address starts with '/', use it
directly as an absolute path, do not prepend
the runtime directory.
This commit is contained in:
Barnabás Pőcze 2021-05-31 17:22:57 +02:00
parent 70c6e6ccc8
commit ebed44db79
2 changed files with 15 additions and 7 deletions

View file

@ -33,6 +33,7 @@ context.modules = [
# the addresses this server listens on
server.address = [
"unix:native"
# "unix:/tmp/something" # absolute paths may be used
# "tcp:4713" # IPv4 and IPv6 on all addresses
# "tcp:[::]:9999" # IPv6 on all addresses
# "tcp:127.0.0.1:8888" # IPv4 on a single address