Merge lp:~julian-edwards/launchpad/multiverse-seeds into lp:launchpad

Proposed by Julian Edwards
Status: Merged
Merged at revision: not available
Proposed branch: lp:~julian-edwards/launchpad/multiverse-seeds
Merge into: lp:launchpad
Diff against target: None lines
To merge this branch: bzr merge lp:~julian-edwards/launchpad/multiverse-seeds
Reviewer Review Type Date Requested Status
Colin Watson (community) Approve
Canonical Launchpad Engineering Pending
Review via email: mp+9819@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Julian Edwards (julian-edwards) wrote :

This branch adds multiverse to the list of components where seeds are
germinated as requested in bug 409578.

Revision history for this message
Colin Watson (cjwatson) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'cronscripts/publishing/cron.germinate'
--- cronscripts/publishing/cron.germinate 2009-07-17 00:26:05 +0000
+++ cronscripts/publishing/cron.germinate 2009-08-07 08:24:21 +0000
@@ -36,7 +36,7 @@
36rm -f all_* all.sources_*36rm -f all_* all.sources_*
3737
38# Grab a local copy of Sources files38# Grab a local copy of Sources files
39for component in main universe restricted; do39for component in main universe restricted multiverse; do
40 zcat $ARCHIVEROOT/dists/"$suite"/"$component"/source/Sources.gz > archive.ubuntu.com_"$suite"_"$component"_Sources;40 zcat $ARCHIVEROOT/dists/"$suite"/"$component"/source/Sources.gz > archive.ubuntu.com_"$suite"_"$component"_Sources;
41done41done
4242
@@ -44,10 +44,10 @@
44for distro in ubuntu kubuntu edubuntu xubuntu mobile mythbuntu unr; do44for distro in ubuntu kubuntu edubuntu xubuntu mobile mythbuntu unr; do
45 DISTRO="$(echo $distro | tr a-z A-Z)"45 DISTRO="$(echo $distro | tr a-z A-Z)"
46 germinate_suite="$distro.$suite"46 germinate_suite="$distro.$suite"
47 germinate_components=main,universe,restricted47 germinate_components=main,universe,restricted,multiverse
48 for arch in i386 amd64 lpia powerpc sparc ia64 hppa armel; do48 for arch in i386 amd64 lpia powerpc sparc ia64 hppa armel; do
49 # Grab local copy of Packages and InstallerPackages files49 # Grab local copy of Packages and InstallerPackages files
50 for component in main universe restricted; do50 for component in main universe restricted multiverse; do
51 zcat $ARCHIVEROOT/dists/"$suite"/"$component"/binary-$arch/Packages.gz > archive.ubuntu.com_"$suite"_"$component"_Packages51 zcat $ARCHIVEROOT/dists/"$suite"/"$component"/binary-$arch/Packages.gz > archive.ubuntu.com_"$suite"_"$component"_Packages
52 zcat $ARCHIVEROOT/dists/"$suite"/"$component"/debian-installer/binary-$arch/Packages.gz > archive.ubuntu.com_"$suite"_"$component"_InstallerPackages52 zcat $ARCHIVEROOT/dists/"$suite"/"$component"/debian-installer/binary-$arch/Packages.gz > archive.ubuntu.com_"$suite"_"$component"_InstallerPackages
53 done53 done