Skip to content

Commit e235feb

Browse files
author
Brandon Philips
committed
fix(dbus): use github.com/godbus/dbus
The old upstream wasn't merging features we needed for Docker and fleet fast enough. Use a new upstream.
1 parent c1c1695 commit e235feb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dbus/dbus.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"strings"
2222
"sync"
2323

24-
"github.com/guelfey/go.dbus"
24+
"github.com/godbus/dbus"
2525
)
2626

2727
const signalBuffer = 100

dbus/methods.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package dbus
1818

1919
import (
2020
"errors"
21-
"github.com/guelfey/go.dbus"
21+
"github.com/godbus/dbus"
2222
)
2323

2424
func (c *Conn) initJobs() {

dbus/properties.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package dbus
1818

1919
import (
20-
"github.com/guelfey/go.dbus"
20+
"github.com/godbus/dbus"
2121
)
2222

2323
// From the systemd docs:

dbus/subscription.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"errors"
2121
"time"
2222

23-
"github.com/guelfey/go.dbus"
23+
"github.com/godbus/dbus"
2424
)
2525

2626
const (

0 commit comments

Comments
 (0)