mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9a82a9a8ea
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
17 lines
312 B
Go
17 lines
312 B
Go
//+build !windows,!solaris,!darwin
|
|
|
|
package dbus
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
const defaultSystemBusAddress = "unix:path=/var/run/dbus/system_bus_socket"
|
|
|
|
func getSystemBusPlatformAddress() string {
|
|
address := os.Getenv("DBUS_SYSTEM_BUS_ADDRESS")
|
|
if address != "" {
|
|
return address
|
|
}
|
|
return defaultSystemBusAddress
|
|
}
|