mirror of
https://github.com/containers/podman.git
synced 2025-11-30 18:18:18 +08:00
CVE-2024-1753 fix for main
Bump to the version of Buidah in it's main branch to get the CVE-2024-1753 fix. [NO NEW TESTS NEEDED] Signed-off-by: tomsweeneyredhat <tsweeney@redhat.com>
This commit is contained in:
11
vendor/github.com/containers/buildah/run.go
generated
vendored
11
vendor/github.com/containers/buildah/run.go
generated
vendored
@@ -3,10 +3,12 @@ package buildah
|
||||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"net"
|
||||
|
||||
"github.com/containers/buildah/define"
|
||||
"github.com/containers/buildah/internal"
|
||||
"github.com/containers/buildah/pkg/sshagent"
|
||||
"github.com/containers/common/libnetwork/etchosts"
|
||||
"github.com/containers/image/v5/types"
|
||||
"github.com/containers/storage/pkg/lockfile"
|
||||
"github.com/opencontainers/runtime-spec/specs-go"
|
||||
@@ -207,3 +209,12 @@ type IDMaps struct {
|
||||
processUID int
|
||||
processGID int
|
||||
}
|
||||
|
||||
// netResult type to hold network info for hosts/resolv.conf
|
||||
type netResult struct {
|
||||
entries etchosts.HostEntries
|
||||
dnsServers []string
|
||||
excludeIPs []net.IP
|
||||
ipv6 bool
|
||||
keepHostResolvers bool
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user