-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump mount utils #2099
Bump mount utils #2099
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ type Mounter interface { | |
} | ||
|
||
func NewMounter(binary string) Mounter { | ||
return mount.New(binary) | ||
return mount.NewWithoutSystemd(binary) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a new method provided with the updated interface which provides a mount wrapper that does not pretend to detect systemd. For instance this has impact on
A part from that we were already a bit outdated in that library. |
||
} | ||
|
||
func NewDummyMounter() Mounter { | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the actual bump, all other changes in go.mod and in vendor are caused by the indirect dependencies and the mount-utils code itself.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
golang vendoring... 😅