summaryrefslogtreecommitdiff
path: root/pkg/domain/entities
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2021-09-23 13:35:57 +0200
committerValentin Rothberg <rothberg@redhat.com>2021-09-23 13:50:49 +0200
commit01bf8a66872df7dc6f93b7156371fa8fce3d84df (patch)
tree335df18349c3c95c8f227eb5e89e7f90cb38c776 /pkg/domain/entities
parentb0d1c0fe22da27c88a0e5de11de08d63ef861347 (diff)
downloadpodman-01bf8a66872df7dc6f93b7156371fa8fce3d84df.tar.gz
podman-01bf8a66872df7dc6f93b7156371fa8fce3d84df.tar.bz2
podman-01bf8a66872df7dc6f93b7156371fa8fce3d84df.zip
podman save: enforce signature removal
Enforce the removal of signatures in `podman save` to restore behavior prior to the migration to libimage. We may consider improving on that in the future. For details, please refer to the excellent summary by @mtrmac [1]. [NO TESTS NEEDED] - manually verified but exisiting tests need some further investigation (see [1]). [1] https://github.com/containers/podman/pull/11669#issuecomment-925250264 Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r--pkg/domain/entities/images.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go
index edd23e662..80d570764 100644
--- a/pkg/domain/entities/images.go
+++ b/pkg/domain/entities/images.go
@@ -305,8 +305,6 @@ type ImageSaveOptions struct {
OciAcceptUncompressedLayers bool
// Output - write image to the specified path.
Output string
- // Do not save the signature from the source image
- RemoveSignatures bool
// Quiet - suppress output when copying images
Quiet bool
}