Merge pull request #2878 from mitchellh/b-remove-push-m
Deprecate push -m
This commit is contained in:
commit
d61871c71b
|
@ -53,6 +53,10 @@ func (c *PushCommand) Run(args []string) int {
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if message != "" {
|
||||||
|
c.Ui.Warn("[DEPRECATED] -m/-message is deprecated and will be removed in a future Packer release")
|
||||||
|
}
|
||||||
|
|
||||||
args = f.Args()
|
args = f.Args()
|
||||||
if len(args) != 1 {
|
if len(args) != 1 {
|
||||||
f.Usage()
|
f.Usage()
|
||||||
|
@ -268,9 +272,6 @@ Usage: packer push [options] TEMPLATE
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
|
|
||||||
-m, -message=<detail> A message to identify the purpose or changes in this
|
|
||||||
Packer template much like a VCS commit message
|
|
||||||
|
|
||||||
-name=<name> The destination build in Atlas. This is in a format
|
-name=<name> The destination build in Atlas. This is in a format
|
||||||
"username/name".
|
"username/name".
|
||||||
|
|
||||||
|
|
|
@ -34,10 +34,6 @@ configuration using the options below.
|
||||||
|
|
||||||
## Options
|
## Options
|
||||||
|
|
||||||
- `-message` - A message to identify the purpose or changes in this Packer
|
|
||||||
template much like a VCS commit message. This message will be passed to the
|
|
||||||
Packer build service. This option is also available as a short option `-m`.
|
|
||||||
|
|
||||||
- `-token` - Your access token for the Atlas API.
|
- `-token` - Your access token for the Atlas API.
|
||||||
|
|
||||||
-> Login to Atlas to [generate an Atlas
|
-> Login to Atlas to [generate an Atlas
|
||||||
|
@ -59,7 +55,7 @@ you can also use `-token` on the command line.
|
||||||
Push a Packer template:
|
Push a Packer template:
|
||||||
|
|
||||||
``` {.shell}
|
``` {.shell}
|
||||||
$ packer push -m "Updating the apache version" template.json
|
$ packer push template.json
|
||||||
```
|
```
|
||||||
|
|
||||||
Push a Packer template with a custom token:
|
Push a Packer template with a custom token:
|
||||||
|
|
Loading…
Reference in New Issue