Merge lp:~ubuntu-branches/ubuntu/natty/cloud-init/natty-201101272214 into lp:ubuntu/natty/cloud-init

Proposed by James Westby
Status: Merged
Merged at revision: 68
Proposed branch: lp:~ubuntu-branches/ubuntu/natty/cloud-init/natty-201101272214
Merge into: lp:ubuntu/natty/cloud-init
Diff against target: 119 lines (+78/-0) (has conflicts)
7 files modified
.bzrignore (+1/-0)
debian/README.source (+11/-0)
debian/cloud-init.config (+8/-0)
debian/cloud-init.templates (+12/-0)
debian/patches/332-fix-perms-on-cloud-init-log.patch (+20/-0)
debian/patches/336-rename-process-user-data-file.txt.patch (+24/-0)
debian/patches/series (+2/-0)
Conflict adding file debian/README.source.  Moved existing file to debian/README.source.moved.
Conflict adding file debian/cloud-init.config.  Moved existing file to debian/cloud-init.config.moved.
Conflict adding file debian/cloud-init.templates.  Moved existing file to debian/cloud-init.templates.moved.
Conflict adding file debian/patches/332-fix-perms-on-cloud-init-log.patch.  Moved existing file to debian/patches/332-fix-perms-on-cloud-init-log.patch.moved.
Conflict adding file debian/patches/336-rename-process-user-data-file.txt.patch.  Moved existing file to debian/patches/336-rename-process-user-data-file.txt.patch.moved.
Conflict adding file debian/patches/series.  Moved existing file to debian/patches/series.moved.
To merge this branch: bzr merge lp:~ubuntu-branches/ubuntu/natty/cloud-init/natty-201101272214
Reviewer Review Type Date Requested Status
Ubuntu branches Pending
Review via email: mp+47743@code.launchpad.net

Description of the change

The package history in the archive and the history in the bzr branch differ. As the archive is authoritative the history of lp:ubuntu/natty/cloud-init now reflects that and the old bzr branch has been pushed to lp:~ubuntu-branches/ubuntu/natty/cloud-init/natty-201101272214. A merge should be performed if necessary.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file '.bzrignore'
2--- .bzrignore 1970-01-01 00:00:00 +0000
3+++ .bzrignore 2011-01-27 22:21:24 +0000
4@@ -0,0 +1,1 @@
5+.pc
6
7=== added file 'debian/README.source'
8--- debian/README.source 1970-01-01 00:00:00 +0000
9+++ debian/README.source 2011-01-27 22:21:24 +0000
10@@ -0,0 +1,11 @@
11+=== General Info ===
12+Development packaging branch is at
13+ lp:ubuntu/<suite>/cloud-init
14+alternatively, if you're on the development release:
15+ lp:ubuntu/cloud-init
16+
17+Patches in debian/patches are also stored applied in bzr.
18+However, the .pc directory is not version controlled.
19+
20+When you've done a fresh checkout of above, you will need to run:
21+ debian/rules quilt-setup
22
23=== renamed file 'debian/README.source' => 'debian/README.source.moved'
24=== added file 'debian/cloud-init.config'
25--- debian/cloud-init.config 1970-01-01 00:00:00 +0000
26+++ debian/cloud-init.config 2011-01-27 22:21:24 +0000
27@@ -0,0 +1,8 @@
28+#!/bin/sh -e
29+
30+. /usr/share/debconf/confmodule
31+
32+db_input low cloud-init/datasources || true
33+db_go
34+
35+exit 0
36
37=== renamed file 'debian/cloud-init.config' => 'debian/cloud-init.config.moved'
38=== added file 'debian/cloud-init.templates'
39--- debian/cloud-init.templates 1970-01-01 00:00:00 +0000
40+++ debian/cloud-init.templates 2011-01-27 22:21:24 +0000
41@@ -0,0 +1,12 @@
42+Template: cloud-init/datasources
43+Type: multiselect
44+Default: NoCloud, OVF
45+Choices-C: NoCloud, OVF, Ec2
46+Choices: NoCloud: Reads info from /var/lib/cloud/seed only, OVF: Reads data from OVF Transports, Ec2: reads data from EC2 Metadata service
47+Description: Which data sources should be searched?
48+ Cloud-init supports searching different "Data Sources" for information
49+ that it uses to configure a cloud instance.
50+ .
51+ Warning: Only select 'Ec2' if this system will be run on a system with
52+ the EC2 metadata service present. Doing so incorrectly will result in
53+ a substantial timeout on boot.
54
55=== renamed file 'debian/cloud-init.templates' => 'debian/cloud-init.templates.moved'
56=== added file 'debian/patches/332-fix-perms-on-cloud-init-log.patch'
57--- debian/patches/332-fix-perms-on-cloud-init-log.patch 1970-01-01 00:00:00 +0000
58+++ debian/patches/332-fix-perms-on-cloud-init-log.patch 2011-01-27 22:21:24 +0000
59@@ -0,0 +1,20 @@
60+------------------------------------------------------------
61+revno: 332
62+committer: Scott Moser <smoser@ubuntu.com>
63+branch nick: trunk
64+timestamp: Thu 2011-01-27 09:30:37 -0500
65+message:
66+ fix bug in fixing permission on default log file
67+--- a/cloudinit/__init__.py
68++++ b/cloudinit/__init__.py
69+@@ -487,8 +487,8 @@
70+ log_file = cfg['def_log_file']
71+ fp = open(log_file,"ab")
72+ fp.close()
73+- if log_file and 'syslog' in cfg:
74+- perms = cfg['syslog']
75++ if log_file and 'syslog_fix_perms' in cfg:
76++ perms = cfg['syslog_fix_perms']
77+ (u,g) = perms.split(':',1)
78+ if u == "-1" or u == "None": u = None
79+ if g == "-1" or g == "None": g = None
80
81=== renamed file 'debian/patches/332-fix-perms-on-cloud-init-log.patch' => 'debian/patches/332-fix-perms-on-cloud-init-log.patch.moved'
82=== added file 'debian/patches/336-rename-process-user-data-file.txt.patch'
83--- debian/patches/336-rename-process-user-data-file.txt.patch 1970-01-01 00:00:00 +0000
84+++ debian/patches/336-rename-process-user-data-file.txt.patch 2011-01-27 22:21:24 +0000
85@@ -0,0 +1,24 @@
86+------------------------------------------------------------
87+revno: 336
88+committer: Scott Moser <smoser@ubuntu.com>
89+branch nick: trunk
90+timestamp: Thu 2011-01-27 14:38:22 -0500
91+message:
92+ fix the filename of the processed userdata
93+
94+ Change /var/lib/cloud/instance/
95+ user-data-raw.txt.i
96+ to
97+ user-data.txt.i
98+=== modified file 'cloudinit/__init__.py'
99+--- a/cloudinit/__init__.py
100++++ b/cloudinit/__init__.py
101+@@ -39,7 +39,7 @@
102+ "sem" : "/sem",
103+ "boothooks" : "/boothooks",
104+ "userdata_raw" : "/user-data.txt",
105+- "userdata" : "/user-data-raw.txt.i",
106++ "userdata" : "/user-data.txt.i",
107+ "obj_pkl" : "/obj.pkl",
108+ "cloud_config" : "/cloud-config.txt",
109+ "datadir" : "/data",
110
111=== renamed file 'debian/patches/336-rename-process-user-data-file.txt.patch' => 'debian/patches/336-rename-process-user-data-file.txt.patch.moved'
112=== added file 'debian/patches/series'
113--- debian/patches/series 1970-01-01 00:00:00 +0000
114+++ debian/patches/series 2011-01-27 22:21:24 +0000
115@@ -0,0 +1,2 @@
116+332-fix-perms-on-cloud-init-log.patch
117+336-rename-process-user-data-file.txt.patch
118
119=== renamed file 'debian/patches/series' => 'debian/patches/series.moved'

Subscribers

People subscribed via source and target branches

to all changes: