mirror of https://github.com/containers/podman.git
Default 'pause' to false for 'podman cp'
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
This commit is contained in:
parent
d81fc2e192
commit
d40b450afd
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue