mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-06-08 16:41:35 +00:00
Download core click packages from the right place when building images
outside the Canonical datacentre.
This commit is contained in:
parent
d083723d88
commit
805633bc05
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -2,6 +2,8 @@ livecd-rootfs (2.181) UNRELEASED; urgency=low
|
|||||||
|
|
||||||
* Use new multiple-database scheme in click 0.4.3 to preinstall click
|
* Use new multiple-database scheme in click 0.4.3 to preinstall click
|
||||||
packages.
|
packages.
|
||||||
|
* Download core click packages from the right place when building images
|
||||||
|
outside the Canonical datacentre.
|
||||||
|
|
||||||
-- Colin Watson <cjwatson@ubuntu.com> Thu, 05 Sep 2013 11:28:15 +0100
|
-- Colin Watson <cjwatson@ubuntu.com> Thu, 05 Sep 2013 11:28:15 +0100
|
||||||
|
|
||||||
|
@ -4,7 +4,14 @@ set -e
|
|||||||
|
|
||||||
echo "Setting up click packages"
|
echo "Setting up click packages"
|
||||||
|
|
||||||
click_uri=http://archive-team.internal/click_packages
|
case $(hostname --fqdn) in
|
||||||
|
*.ubuntu.com)
|
||||||
|
click_uri=http://archive-team.internal/click_packages
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
click_uri=http://people.canonical.com/~ubuntu-archive/click_packages
|
||||||
|
;;
|
||||||
|
esac
|
||||||
click_list=$click_uri/click_list
|
click_list=$click_uri/click_list
|
||||||
click_db=/usr/share/click/preinstalled
|
click_db=/usr/share/click/preinstalled
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user