fix typo in settings.py preventing metadata being fecthed in ec2

This commit is contained in:
Dennis Gilmore 2014-06-12 19:48:24 -05:00
parent a4207cd56e
commit 30d3081689
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,11 @@
--- cloud-init-0.7.5/cloudinit/settings.py.orig 2014-06-12 19:45:29.132522989 -0500
+++ cloud-init-0.7.5/cloudinit/settings.py 2014-06-12 19:45:40.670481588 -0500
@@ -37,7 +37,7 @@
'OVF',
'MAAS',
'GCE',
- 'OpenStack'
+ 'OpenStack',
'Ec2',
'CloudSigma',
'CloudStack',

View File

@ -7,7 +7,7 @@
Name: cloud-init
Version: 0.7.5
Release: 5%{?dist}
Release: 6%{?dist}
Summary: Cloud instance init scripts
Group: System Environment/Base
@ -28,6 +28,9 @@ Patch1: cloud-init-0.7.5-rsyslog-programname.patch
# Systemd 213 removed the --quiet option from ``udevadm settle''
Patch2: cloud-init-0.7.5-udevadm-quiet.patch
# there is a typo in setting.py
Patch3: cloud-init-settings-providers.patch
# Deal with noarch -> arch
# https://bugzilla.redhat.com/show_bug.cgi?id=1067089
Obsoletes: cloud-init < 0.7.5-3
@ -71,6 +74,7 @@ ssh keys and to let the user run various scripts.
%patch0 -p1
%patch1 -p1
%patch2 -p1
%patch3 -p1
cp -p %{SOURCE2} README.fedora
@ -160,6 +164,9 @@ fi
%changelog
* Thu Jun 12 2014 Dennis Gilmore <dennis@ausil.us> - 0.7.5-6
- fix typo in settings.py preventing metadata being fecthed in ec2
* Mon Jun 9 2014 Garrett Holmstrom <gholms@fedoraproject.org> - 0.7.5-5
- Stopped calling ``udevadm settle'' with --quiet since systemd 213 removed it