mirror of
https://github.com/containers/podman.git
synced 2025-12-03 19:59:39 +08:00
update buildah and c/common to latest
also includes bumps for c/storage and c/image Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
9
vendor/github.com/containers/buildah/pkg/parse/parse.go
generated
vendored
9
vendor/github.com/containers/buildah/pkg/parse/parse.go
generated
vendored
@@ -345,6 +345,15 @@ func SystemContextFromFlagSet(flags *pflag.FlagSet, findFlagFunc func(name strin
|
||||
ctx.OCIInsecureSkipTLSVerify = !tlsVerify
|
||||
ctx.DockerDaemonInsecureSkipTLSVerify = !tlsVerify
|
||||
}
|
||||
insecure, err := flags.GetBool("insecure")
|
||||
if err == nil && findFlagFunc("insecure").Changed {
|
||||
if ctx.DockerInsecureSkipTLSVerify != types.OptionalBoolUndefined {
|
||||
return nil, errors.New("--insecure may not be used with --tls-verify")
|
||||
}
|
||||
ctx.DockerInsecureSkipTLSVerify = types.NewOptionalBool(insecure)
|
||||
ctx.OCIInsecureSkipTLSVerify = insecure
|
||||
ctx.DockerDaemonInsecureSkipTLSVerify = insecure
|
||||
}
|
||||
disableCompression, err := flags.GetBool("disable-compression")
|
||||
if err == nil {
|
||||
if disableCompression {
|
||||
|
||||
Reference in New Issue
Block a user