Garrett Holmstrom 12 years ago
parent 51a0fabcc4
commit 92c247b856

@ -0,0 +1,19 @@
Index: boto/boto/ec2/autoscale/tag.py
===================================================================
--- boto.orig/boto/ec2/autoscale/tag.py
+++ boto/boto/ec2/autoscale/tag.py
@@ -55,11 +55,11 @@ class Tag(object):
self.key = value
elif name == 'Value':
self.value = value
- elif name == 'PropogateAtLaunch':
+ elif name == 'PropagateAtLaunch':
if value.lower() == 'true':
- self.propogate_at_launch = True
+ self.propagate_at_launch = True
else:
- self.propogate_at_launch = False
+ self.propagate_at_launch = False
elif name == 'ResourceId':
self.resource_id = value
elif name == 'ResourceType':

@ -17,6 +17,10 @@ Patch1: boto-2.13.3-virttype.patch
# Fix auto-scaling get_all_adjustment_types
# https://github.com/boto/boto/pull/1538
Patch2: boto-2.9.9-adjtype.patch
# Fix auto-scaling PropagateAtLaunch parsing
# https://bugzilla.redhat.com/show_bug.cgi?id=1011682
# https://github.com/boto/boto/pull/1739
Patch3: boto-2.13.3-propagateatlaunch.patch
%description
@ -30,6 +34,8 @@ use, lightweight wrapper around the Amazon services.
%setup -q -n boto-%{version}
%patch1 -p1
%patch2 -p1
%patch3 -p1
rm -r boto.egg-info
%build
@ -67,6 +73,7 @@ rm -r boto.egg-info
* Thu Sep 26 2013 Garrett Holmstrom <gholms@fedoraproject.org> - 2.13.3-1
- Updated to 2.13.3
- Note that this version changes register_image's virtualization_type parameter
- Fixed auto-scaling PropagateAtLaunch parsing (#1011682)
* Mon Jul 29 2013 Garrett Holmstrom <gholms@fedoraproject.org> - 2.9.9-2
- Re-fixed autoscaling policy parsing (boto #1538)

Loading…
Cancel
Save