From d26a5f6c93697da9c91665bed43bb53470511a43 Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Wed, 23 Apr 2014 10:39:34 -0700 Subject: [PATCH] fix(oem/ami): Disable parallel AMI copying The parallelism appears to be what was breaking the fussy ec2 command line tools. Just do it serially instead. --- oem/ami/copy_ami.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/oem/ami/copy_ami.sh b/oem/ami/copy_ami.sh index 698fba7ab1..37500002d9 100755 --- a/oem/ami/copy_ami.sh +++ b/oem/ami/copy_ami.sh @@ -135,10 +135,7 @@ for r in "${!AKI[@]}" do [ "${r}" == "${region}" ] && continue echo "Starting copy of $AMI from $region to $r" - do_copy "$r" & - sleep 15 + do_copy "$r" done -wait - echo "Done"