Skip to content

Commit

Permalink
Update github.com/godbus/dbus and github.com/coreos/go-systemd
Browse files Browse the repository at this point in the history
Signed-off-by: Mateusz Gozdek <mateusz@kinvolk.io>
  • Loading branch information
invidian committed Nov 17, 2020
1 parent ff2b5e3 commit ca71ec0
Show file tree
Hide file tree
Showing 78 changed files with 8,280 additions and 585 deletions.
5 changes: 3 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ replace github.com/coreos/etcd/client => ./etcd/client
require (
github.com/coreos/etcd v3.3.25+incompatible // indirect
github.com/coreos/etcd/client v0.0.0-00010101000000-000000000000
github.com/coreos/go-systemd v0.0.0-20141015001424-e3e4f602334e
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f
github.com/godbus/dbus v0.0.0-20141007185835-25a4b8ca48c6
github.com/godbus/dbus v4.1.0+incompatible // indirect
github.com/godbus/dbus/v5 v5.0.3
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/rkt/rkt v1.30.0
golang.org/x/net v0.0.0-20201031054903-ff519b6c9102
Expand Down
8 changes: 6 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
github.com/coreos/go-systemd v0.0.0-20141015001424-e3e4f602334e h1:UL9vt+QLxHxLGvYzWBtmrWX3Gn386D/JLo+A+lZXF7c=
github.com/coreos/go-systemd v0.0.0-20141015001424-e3e4f602334e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf h1:iW4rZ826su+pqaw19uhpSCzhj44qo35pNgKFGqzDKkU=
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg=
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA=
github.com/godbus/dbus v0.0.0-20141007185835-25a4b8ca48c6 h1:ktNNkmZO+GEJH27RAe03xbhUuXOFgAr5p59K25XYyhk=
github.com/godbus/dbus v0.0.0-20141007185835-25a4b8ca48c6/go.mod h1:/YcGZj5zSblfDWMMoOzV4fas9FZnQYTkDnsGvmh2Grw=
github.com/godbus/dbus v4.1.0+incompatible h1:WqqLRTsQic3apZUK9qC5sGNfXthmPXzUZ7nQPrNITa4=
github.com/godbus/dbus v4.1.0+incompatible/go.mod h1:/YcGZj5zSblfDWMMoOzV4fas9FZnQYTkDnsGvmh2Grw=
github.com/godbus/dbus/v5 v5.0.3 h1:ZqHaoEF7TBzh4jzPmqVhE/5A1z9of6orkAe5uHoAeME=
github.com/godbus/dbus/v5 v5.0.3/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I=
github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
github.com/rkt/rkt v1.30.0 h1:ZI5RQtSibfjicSttV/HLiHuWreYClEJA2Or5XKAdJb0=
Expand Down
2 changes: 1 addition & 1 deletion locksmithctl/send_need_reboot.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"strconv"
"time"

"github.com/godbus/dbus"
dbus "github.com/godbus/dbus/v5"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions updateengine/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"os"
"strconv"

"github.com/godbus/dbus"
dbus "github.com/godbus/dbus/v5"
)

const (
Expand All @@ -36,7 +36,7 @@ const (
// Client is a dbus client subscribed to updateengine status updates
type Client struct {
conn *dbus.Conn
object *dbus.Object
object dbus.BusObject
ch chan *dbus.Signal
}

Expand Down
2 changes: 1 addition & 1 deletion updateengine/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"testing"
"time"

"github.com/godbus/dbus"
dbus "github.com/godbus/dbus/v5"
)

func makeSig(curOp string) *dbus.Signal {
Expand Down
2 changes: 1 addition & 1 deletion updateengine/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"errors"
"fmt"

"github.com/godbus/dbus"
dbus "github.com/godbus/dbus/v5"
)

// Status is a struct containing the information passed by updateengine on every
Expand Down
5 changes: 5 additions & 0 deletions vendor/github.com/coreos/go-systemd/NOTICE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

225 changes: 225 additions & 0 deletions vendor/github.com/coreos/go-systemd/journal/journal.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ca71ec0

Please sign in to comment.