mirror of
https://github.com/containers/podman.git
synced 2025-10-20 12:43:58 +08:00
Bump github.com/containers/common from 0.17.0 to 0.18.0
Bumps [github.com/containers/common](https://github.com/containers/common) from 0.17.0 to 0.18.0. - [Release notes](https://github.com/containers/common/releases) - [Commits](https://github.com/containers/common/compare/v0.17.0...v0.18.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
This commit is contained in:
![27856297+dependabot-preview[bot]@users.noreply.github.com](/assets/img/avatar_default.png)
committed by
Daniel J Walsh

parent
1aac197f79
commit
87f60bbfaa
10
vendor/github.com/containers/common/pkg/config/systemd.go
generated
vendored
10
vendor/github.com/containers/common/pkg/config/systemd.go
generated
vendored
@ -2,7 +2,17 @@
|
||||
|
||||
package config
|
||||
|
||||
import (
|
||||
"github.com/containers/common/pkg/cgroupv2"
|
||||
"github.com/containers/storage/pkg/unshare"
|
||||
)
|
||||
|
||||
func defaultCgroupManager() string {
|
||||
enabled, err := cgroupv2.Enabled()
|
||||
if err == nil && !enabled && unshare.IsRootless() {
|
||||
return CgroupfsCgroupsManager
|
||||
}
|
||||
|
||||
return SystemdCgroupsManager
|
||||
}
|
||||
func defaultEventsLogger() string {
|
||||
|
2
vendor/github.com/containers/common/version/version.go
generated
vendored
2
vendor/github.com/containers/common/version/version.go
generated
vendored
@ -1,4 +1,4 @@
|
||||
package version
|
||||
|
||||
// Version is the version of the build.
|
||||
const Version = "0.17.0"
|
||||
const Version = "0.18.0"
|
||||
|
Reference in New Issue
Block a user