From 18f446eac1b80f34ffb8a6ce45eedb1be075594c Mon Sep 17 00:00:00 2001 From: evan82 Date: Thu, 12 Dec 2013 15:49:24 -0700 Subject: [PATCH] Fix ec2_ami no_reboot setting (currently it will not reboot instances to create the AMI) Line 276: no_reboot = dict(default=True, type="bool"), This should really default to False (When AMIs are created the machine will reboot before copying the disk). "When enabled, Amazon EC2 does not shut down the instance before creating the image. When this option is used, file system integrity on the created image cannot be guaranteed." --- cloud/ec2_ami | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/ec2_ami b/cloud/ec2_ami index 3086144e45b..bc6be9a5827 100644 --- a/cloud/ec2_ami +++ b/cloud/ec2_ami @@ -273,7 +273,7 @@ def main(): wait = dict(type="bool", default=False), wait_timeout = dict(default=900), description = dict(default=""), - no_reboot = dict(default=True, type="bool"), + no_reboot = dict(default=False, type="bool"), state = dict(default='present'), region = dict(aliases=['aws_region', 'ec2_region'], choices=AWS_REGIONS) )