diff options
author | umohnani8 <umohnani@redhat.com> | 2018-04-29 17:37:51 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-04-30 19:58:22 +0000 |
commit | d5d6e6859286ab9310e4a79082d50c816941f1ae (patch) | |
tree | 0b06e31977db05efbab498d264ef74dfa374b34d /cmd/podman/save.go | |
parent | d1b03f470e8285613ccdf84f00e47143e7361c3b (diff) | |
download | podman-d5d6e6859286ab9310e4a79082d50c816941f1ae.tar.gz podman-d5d6e6859286ab9310e4a79082d50c816941f1ae.tar.bz2 podman-d5d6e6859286ab9310e4a79082d50c816941f1ae.zip |
Make ':' a restricted character for file names
file names for podman load, save, export, and import cannot
contain ":" in them. It is a reserved character for parsing
filenames.
Signed-off-by: umohnani8 <umohnani@redhat.com>
Closes: #694
Approved by: rhatdan
Diffstat (limited to 'cmd/podman/save.go')
-rw-r--r-- | cmd/podman/save.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/podman/save.go b/cmd/podman/save.go index e41e95f69..ce82b588a 100644 --- a/cmd/podman/save.go +++ b/cmd/podman/save.go @@ -87,6 +87,9 @@ func saveCmd(c *cli.Context) error { return errors.Errorf("refusing to save to terminal. Use -o flag or redirect") } } + if err := validateFileName(output); err != nil { + return err + } var dst, manifestType string switch c.String("format") { |