Merge lp:~cjwatson/ubuntu-archive-publishing/uefi-kmod-signing into lp:ubuntu-archive-publishing

Proposed by Colin Watson
Status: Merged
Merged at revision: 84
Proposed branch: lp:~cjwatson/ubuntu-archive-publishing/uefi-kmod-signing
Merge into: lp:ubuntu-archive-publishing
Diff against target: 20 lines (+6/-3)
1 file modified
publish-distro.d/10-sign-releases (+6/-3)
To merge this branch: bzr merge lp:~cjwatson/ubuntu-archive-publishing/uefi-kmod-signing
Reviewer Review Type Date Requested Status
Ubuntu Package Archive Administrators Pending
Review via email: mp+297945@code.launchpad.net

Commit message

Sign published checksum files for raw-signing/raw-uefi uploads.

Description of the change

Sign published checksum files for raw-signing/raw-uefi uploads. This handles the primary archive case, corresponding to Andy's work in Launchpad itself which publishes the checksum files themselves and handles the PPA case.

To post a comment you must log in.
Revision history for this message
Andy Whitcroft (apw) wrote :

Looks to mirror the effect of the recent additions to the Launchpad custom uploads for signing.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'publish-distro.d/10-sign-releases'
2--- publish-distro.d/10-sign-releases 2016-03-20 22:58:53 +0000
3+++ publish-distro.d/10-sign-releases 2016-06-20 17:42:56 +0000
4@@ -106,10 +106,13 @@
5 RELEASE_FILES=`find $DISTSROOT -maxdepth 2 -name Release`
6 DIST_UPGRADER_TARBALLS=`
7 find $DISTSROOT/*/*/dist-upgrader* -name "*.tar.gz" || true`
8-INSTALLER_CHECKSUMS=`
9- find $DISTSROOT/*/*/installer-* -name "*SUMS" || true`
10+CUSTOM_CHECKSUMS=`
11+ find $DISTSROOT/*/*/installer-* \
12+ $DISTSROOT/*/*/signed \
13+ $DISTSROOT/*/*/uefi \
14+ -name "*SUMS" || true`
15
16-for CANDIDATE in $RELEASE_FILES $DIST_UPGRADER_TARBALLS $INSTALLER_CHECKSUMS
17+for CANDIDATE in $RELEASE_FILES $DIST_UPGRADER_TARBALLS $CUSTOM_CHECKSUMS
18 do
19 if [ ! -f "$CANDIDATE.gpg" ] || [ "$CANDIDATE" -nt "$CANDIDATE.gpg" ]
20 then

Subscribers

People subscribed via source and target branches