Merge lp:~tom-gall/linaro-image-tools/fix-miss-tar into lp:linaro-image-tools/11.11

Proposed by Tom Gall
Status: Merged
Merged at revision: 137
Proposed branch: lp:~tom-gall/linaro-image-tools/fix-miss-tar
Merge into: lp:linaro-image-tools/11.11
Diff against target: 12 lines (+1/-1)
1 file modified
linaro-media-create (+1/-1)
To merge this branch: bzr merge lp:~tom-gall/linaro-image-tools/fix-miss-tar
Reviewer Review Type Date Requested Status
James Westby (community) Approve
Review via email: mp+37917@code.launchpad.net

Description of the change

This fixes an interesting problem where the GID on dbus-daemon-launch-helper
 was not being set to messagebus as it needed to be. This stopped console-kit-daemon and the policykit daemon from being started at boot time.

The root cause was the untar needed --numeric-owner added so the UID/GID was correct when copied over to the media.

To post a comment you must log in.
Revision history for this message
James Westby (james-w) wrote :

Looks great.

Thanks,

James

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'linaro-media-create'
2--- linaro-media-create 2010-10-07 15:41:49 +0000
3+++ linaro-media-create 2010-10-07 22:32:43 +0000
4@@ -330,7 +330,7 @@
5 # Remove the binary/ directory so that previous runs don't interfere here.
6 remove_binary_dir
7
8- sudo tar -xf $BINARY_TARBALL
9+ sudo tar --numeric-owner -xf $BINARY_TARBALL
10 }
11
12 create_boot_cmd() {

Subscribers

People subscribed via source and target branches