mirror of
https://github.com/containers/podman.git
synced 2025-10-20 20:54:45 +08:00
Update vendor or containers/buildah
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
6
vendor/github.com/containers/common/libimage/image.go
generated
vendored
6
vendor/github.com/containers/common/libimage/image.go
generated
vendored
@ -477,8 +477,10 @@ func (i *Image) removeRecursive(ctx context.Context, rmMap map[string]*RemoveIma
|
||||
}
|
||||
|
||||
report.Untagged = append(report.Untagged, i.Names()...)
|
||||
for _, name := range i.Names() {
|
||||
i.runtime.writeEvent(&Event{ID: i.ID(), Name: name, Time: time.Now(), Type: EventTypeImageUntag})
|
||||
if i.runtime.eventChannel != nil {
|
||||
for _, name := range i.Names() {
|
||||
i.runtime.writeEvent(&Event{ID: i.ID(), Name: name, Time: time.Now(), Type: EventTypeImageUntag})
|
||||
}
|
||||
}
|
||||
|
||||
if !hasChildren {
|
||||
|
2
vendor/github.com/containers/common/libnetwork/types/network.go
generated
vendored
2
vendor/github.com/containers/common/libnetwork/types/network.go
generated
vendored
@ -199,6 +199,7 @@ type NetAddress struct {
|
||||
// PerNetworkOptions are options which should be set on a per network basis.
|
||||
type PerNetworkOptions struct {
|
||||
// StaticIPs for this container. Optional.
|
||||
// swagger:type []string
|
||||
StaticIPs []net.IP `json:"static_ips,omitempty"`
|
||||
// Aliases contains a list of names which the dns server should resolve
|
||||
// to this container. Should only be set when DNSEnabled is true on the Network.
|
||||
@ -207,6 +208,7 @@ type PerNetworkOptions struct {
|
||||
// Optional.
|
||||
Aliases []string `json:"aliases,omitempty"`
|
||||
// StaticMac for this container. Optional.
|
||||
// swagger:strfmt string
|
||||
StaticMAC HardwareAddr `json:"static_mac,omitempty"`
|
||||
// InterfaceName for this container. Required in the backend.
|
||||
// Optional in the frontend. Will be filled with ethX (where X is a integer) when empty.
|
||||
|
4
vendor/github.com/containers/common/pkg/config/config_linux.go
generated
vendored
4
vendor/github.com/containers/common/pkg/config/config_linux.go
generated
vendored
@ -23,7 +23,7 @@ func customConfigFile() (string, error) {
|
||||
if path, found := os.LookupEnv("CONTAINERS_CONF"); found {
|
||||
return path, nil
|
||||
}
|
||||
if unshare.IsRootless() {
|
||||
if unshare.GetRootlessUID() > 0 {
|
||||
path, err := rootlessConfigPath()
|
||||
if err != nil {
|
||||
return "", err
|
||||
@ -34,7 +34,7 @@ func customConfigFile() (string, error) {
|
||||
}
|
||||
|
||||
func ifRootlessConfigPath() (string, error) {
|
||||
if unshare.IsRootless() {
|
||||
if unshare.GetRootlessUID() > 0 {
|
||||
path, err := rootlessConfigPath()
|
||||
if err != nil {
|
||||
return "", err
|
||||
|
6
vendor/github.com/containers/common/pkg/config/default.go
generated
vendored
6
vendor/github.com/containers/common/pkg/config/default.go
generated
vendored
@ -180,7 +180,7 @@ func DefaultConfig() (*Config, error) {
|
||||
}
|
||||
|
||||
defaultEngineConfig.SignaturePolicyPath = DefaultSignaturePolicyPath
|
||||
if unshare.IsRootless() {
|
||||
if unshare.GetRootlessUID() > 0 {
|
||||
configHome, err := homedir.GetConfigHome()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
@ -289,7 +289,7 @@ func defaultConfigFromMemory() (*EngineConfig, error) {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
storeOpts, err := types.DefaultStoreOptions(unshare.IsRootless(), unshare.GetRootlessUID())
|
||||
storeOpts, err := types.DefaultStoreOptions(unshare.GetRootlessUID() > 0, unshare.GetRootlessUID())
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
@ -427,7 +427,7 @@ func defaultConfigFromMemory() (*EngineConfig, error) {
|
||||
}
|
||||
|
||||
func defaultTmpDir() (string, error) {
|
||||
if !unshare.IsRootless() {
|
||||
if unshare.GetRootlessUID() == 0 {
|
||||
return getLibpodTmpDir(), nil
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user