Addresses #5276 update documentation for ec2_ami no_reboot parameter
This commit is contained in:
parent
9cc1e0e963
commit
35cd043e25
2 changed files with 4 additions and 2 deletions
|
@ -3,6 +3,8 @@ Ansible Changes By Release
|
||||||
|
|
||||||
## 1.5 "Love Walks In" - Release pending!
|
## 1.5 "Love Walks In" - Release pending!
|
||||||
|
|
||||||
|
* no_reboot is now defaulted to "no" in the ec2_ami module to ensure filesystem consistency in the resulting AMI.
|
||||||
|
|
||||||
## 1.4.1 "Could This Be Magic" - November 27, 2013
|
## 1.4.1 "Could This Be Magic" - November 27, 2013
|
||||||
|
|
||||||
* Misc fixes to accelerate mode and various modules.
|
* Misc fixes to accelerate mode and various modules.
|
||||||
|
|
|
@ -84,9 +84,9 @@ options:
|
||||||
aliases: []
|
aliases: []
|
||||||
no_reboot:
|
no_reboot:
|
||||||
description:
|
description:
|
||||||
- An optional flag indicating that the bundling process should not attempt to shutdown the instance before bundling. If this flag is True, the responsibility of maintaining file system integrity is left to the owner of the instance.
|
- An optional flag indicating that the bundling process should not attempt to shutdown the instance before bundling. If this flag is True, the responsibility of maintaining file system integrity is left to the owner of the instance. The default choice is "no".
|
||||||
required: false
|
required: false
|
||||||
default: yes
|
default: no
|
||||||
choices: [ "yes", "no" ]
|
choices: [ "yes", "no" ]
|
||||||
aliases: []
|
aliases: []
|
||||||
image_id:
|
image_id:
|
||||||
|
|
Loading…
Reference in a new issue