mirror of
https://github.com/containers/podman.git
synced 2025-12-02 02:58:03 +08:00
Ran a `go get -u` and bumped K8s deps to 1.15.0. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
16 lines
277 B
Go
16 lines
277 B
Go
//+build windows
|
|
|
|
package dbus
|
|
|
|
import "os"
|
|
|
|
const defaultSystemBusAddress = "tcp:host=127.0.0.1,port=12434"
|
|
|
|
func getSystemBusPlatformAddress() string {
|
|
address := os.Getenv("DBUS_SYSTEM_BUS_ADDRESS")
|
|
if address != "" {
|
|
return address
|
|
}
|
|
return defaultSystemBusAddress
|
|
}
|