k3s/vendor/github.com/godbus/dbus/v5/conn_unix.go

18 lines
312 B
Go
Raw Normal View History

2019-12-12 01:27:03 +00:00
//+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 != "" {
2020-08-10 17:43:49 +00:00
return address
2019-12-12 01:27:03 +00:00
}
return defaultSystemBusAddress
2020-08-10 17:43:49 +00:00
}