app/dbus: set dbusAddress early
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
parent
38ef2b4d0c
commit
8e848366cd
|
@ -23,6 +23,7 @@ func (a *App) ShareDBus(c *dbus.Config) {
|
||||||
|
|
||||||
var binPath, address string
|
var binPath, address string
|
||||||
target := path.Join(system.V.Share, strconv.Itoa(os.Getpid()))
|
target := path.Join(system.V.Share, strconv.Itoa(os.Getpid()))
|
||||||
|
dbusAddress = "unix:path=" + target
|
||||||
|
|
||||||
if b, ok := util.Which("xdg-dbus-proxy"); !ok {
|
if b, ok := util.Which("xdg-dbus-proxy"); !ok {
|
||||||
state.Fatal("D-Bus: Did not find 'xdg-dbus-proxy' in PATH")
|
state.Fatal("D-Bus: Did not find 'xdg-dbus-proxy' in PATH")
|
||||||
|
@ -74,7 +75,6 @@ func (a *App) ShareDBus(c *dbus.Config) {
|
||||||
|
|
||||||
// register early to enable Fatal cleanup
|
// register early to enable Fatal cleanup
|
||||||
state.RegisterDBus(p, &done)
|
state.RegisterDBus(p, &done)
|
||||||
dbusAddress = "unix:path=" + target
|
|
||||||
|
|
||||||
if !<-ready {
|
if !<-ready {
|
||||||
state.Fatal("D-Bus: proxy did not start correctly")
|
state.Fatal("D-Bus: proxy did not start correctly")
|
||||||
|
|
Loading…
Reference in New Issue