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
=== added file '.bzrignore'
--- .bzrignore 1970-01-01 00:00:00 +0000
+++ .bzrignore 2011-01-27 22:21:24 +0000
@@ -0,0 +1,1 @@
1.pc
02
=== added file 'debian/README.source'
--- debian/README.source 1970-01-01 00:00:00 +0000
+++ debian/README.source 2011-01-27 22:21:24 +0000
@@ -0,0 +1,11 @@
1=== General Info ===
2Development packaging branch is at
3 lp:ubuntu/<suite>/cloud-init
4alternatively, if you're on the development release:
5 lp:ubuntu/cloud-init
6
7Patches in debian/patches are also stored applied in bzr.
8However, the .pc directory is not version controlled.
9
10When you've done a fresh checkout of above, you will need to run:
11 debian/rules quilt-setup
012
=== renamed file 'debian/README.source' => 'debian/README.source.moved'
=== added file 'debian/cloud-init.config'
--- debian/cloud-init.config 1970-01-01 00:00:00 +0000
+++ debian/cloud-init.config 2011-01-27 22:21:24 +0000
@@ -0,0 +1,8 @@
1#!/bin/sh -e
2
3. /usr/share/debconf/confmodule
4
5db_input low cloud-init/datasources || true
6db_go
7
8exit 0
09
=== renamed file 'debian/cloud-init.config' => 'debian/cloud-init.config.moved'
=== added file 'debian/cloud-init.templates'
--- debian/cloud-init.templates 1970-01-01 00:00:00 +0000
+++ debian/cloud-init.templates 2011-01-27 22:21:24 +0000
@@ -0,0 +1,12 @@
1Template: cloud-init/datasources
2Type: multiselect
3Default: NoCloud, OVF
4Choices-C: NoCloud, OVF, Ec2
5Choices: NoCloud: Reads info from /var/lib/cloud/seed only, OVF: Reads data from OVF Transports, Ec2: reads data from EC2 Metadata service
6Description: Which data sources should be searched?
7 Cloud-init supports searching different "Data Sources" for information
8 that it uses to configure a cloud instance.
9 .
10 Warning: Only select 'Ec2' if this system will be run on a system with
11 the EC2 metadata service present. Doing so incorrectly will result in
12 a substantial timeout on boot.
013
=== renamed file 'debian/cloud-init.templates' => 'debian/cloud-init.templates.moved'
=== added file 'debian/patches/332-fix-perms-on-cloud-init-log.patch'
--- debian/patches/332-fix-perms-on-cloud-init-log.patch 1970-01-01 00:00:00 +0000
+++ debian/patches/332-fix-perms-on-cloud-init-log.patch 2011-01-27 22:21:24 +0000
@@ -0,0 +1,20 @@
1------------------------------------------------------------
2revno: 332
3committer: Scott Moser <smoser@ubuntu.com>
4branch nick: trunk
5timestamp: Thu 2011-01-27 09:30:37 -0500
6message:
7 fix bug in fixing permission on default log file
8--- a/cloudinit/__init__.py
9+++ b/cloudinit/__init__.py
10@@ -487,8 +487,8 @@
11 log_file = cfg['def_log_file']
12 fp = open(log_file,"ab")
13 fp.close()
14- if log_file and 'syslog' in cfg:
15- perms = cfg['syslog']
16+ if log_file and 'syslog_fix_perms' in cfg:
17+ perms = cfg['syslog_fix_perms']
18 (u,g) = perms.split(':',1)
19 if u == "-1" or u == "None": u = None
20 if g == "-1" or g == "None": g = None
021
=== renamed file 'debian/patches/332-fix-perms-on-cloud-init-log.patch' => 'debian/patches/332-fix-perms-on-cloud-init-log.patch.moved'
=== added file 'debian/patches/336-rename-process-user-data-file.txt.patch'
--- debian/patches/336-rename-process-user-data-file.txt.patch 1970-01-01 00:00:00 +0000
+++ debian/patches/336-rename-process-user-data-file.txt.patch 2011-01-27 22:21:24 +0000
@@ -0,0 +1,24 @@
1------------------------------------------------------------
2revno: 336
3committer: Scott Moser <smoser@ubuntu.com>
4branch nick: trunk
5timestamp: Thu 2011-01-27 14:38:22 -0500
6message:
7 fix the filename of the processed userdata
8
9 Change /var/lib/cloud/instance/
10 user-data-raw.txt.i
11 to
12 user-data.txt.i
13=== modified file 'cloudinit/__init__.py'
14--- a/cloudinit/__init__.py
15+++ b/cloudinit/__init__.py
16@@ -39,7 +39,7 @@
17 "sem" : "/sem",
18 "boothooks" : "/boothooks",
19 "userdata_raw" : "/user-data.txt",
20- "userdata" : "/user-data-raw.txt.i",
21+ "userdata" : "/user-data.txt.i",
22 "obj_pkl" : "/obj.pkl",
23 "cloud_config" : "/cloud-config.txt",
24 "datadir" : "/data",
025
=== renamed file 'debian/patches/336-rename-process-user-data-file.txt.patch' => 'debian/patches/336-rename-process-user-data-file.txt.patch.moved'
=== added file 'debian/patches/series'
--- debian/patches/series 1970-01-01 00:00:00 +0000
+++ debian/patches/series 2011-01-27 22:21:24 +0000
@@ -0,0 +1,2 @@
1332-fix-perms-on-cloud-init-log.patch
2336-rename-process-user-data-file.txt.patch
03
=== renamed file 'debian/patches/series' => 'debian/patches/series.moved'

Subscribers

People subscribed via source and target branches

to all changes: