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>
18 lines
347 B
Go
18 lines
347 B
Go
//+build !windows,!solaris,!darwin
|
|
|
|
package dbus
|
|
|
|
import (
|
|
"os"
|
|
"fmt"
|
|
)
|
|
|
|
const defaultSystemBusAddress = "unix:path=/var/run/dbus/system_bus_socket"
|
|
|
|
func getSystemBusPlatformAddress() string {
|
|
address := os.Getenv("DBUS_SYSTEM_BUS_ADDRESS")
|
|
if address != "" {
|
|
return fmt.Sprintf("unix:path=%s", address)
|
|
}
|
|
return defaultSystemBusAddress
|
|
} |