Default 'pause' to false for 'podman cp'

Signed-off-by: Matthew Heon <matthew.heon@pm.me>
This commit is contained in:
Matthew Heon 2019-06-07 15:16:51 -04:00
parent d81fc2e192
commit d40b450afd
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ func init() {
cpCommand.Command = _cpCommand
flags := cpCommand.Flags()
flags.BoolVar(&cpCommand.Extract, "extract", false, "Extract the tar file into the destination directory.")
flags.BoolVar(&cpCommand.Pause, "pause", true, "Pause the container while copying")
flags.BoolVar(&cpCommand.Pause, "pause", false, "Pause the container while copying")
cpCommand.SetHelpTemplate(HelpTemplate())
cpCommand.SetUsageTemplate(UsageTemplate())
rootCmd.AddCommand(cpCommand.Command)

View File

@ -63,7 +63,7 @@ Extract the tar file into the destination directory. If the destination director
**--pause**
Pause the container while copying into it to avoid potential security issues around symlinks. Defaults to *true*.
Pause the container while copying into it to avoid potential security issues around symlinks. Defaults to *false*.
## ALTERNATIVES