mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-05-16 05:11:31 +00:00
Make 60-install-click.chroot more verbose, in an attempt to figure out
why this doesn't work in the datacentre.
This commit is contained in:
parent
430558b8ce
commit
00192887a2
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,3 +1,10 @@
|
|||||||
|
livecd-rootfs (2.183) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
* Make 60-install-click.chroot more verbose, in an attempt to figure out
|
||||||
|
why this doesn't work in the datacentre.
|
||||||
|
|
||||||
|
-- Colin Watson <cjwatson@ubuntu.com> Fri, 06 Sep 2013 11:47:49 +0100
|
||||||
|
|
||||||
livecd-rootfs (2.182) saucy; urgency=low
|
livecd-rootfs (2.182) saucy; urgency=low
|
||||||
|
|
||||||
* Log the hostname at the start of the build.
|
* Log the hostname at the start of the build.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
set -e
|
set -ex
|
||||||
|
|
||||||
echo "Setting up click packages"
|
echo "Setting up click packages"
|
||||||
|
|
||||||
@ -22,7 +22,8 @@ tmpdir="$(mktemp -d)"
|
|||||||
cleanup () { rm -rf "$tmpdir"; }
|
cleanup () { rm -rf "$tmpdir"; }
|
||||||
trap cleanup EXIT
|
trap cleanup EXIT
|
||||||
|
|
||||||
for package in $(wget -qO- "$click_list")
|
wget --no-verbose -O "$tmpdir/click_list" "$click_list"
|
||||||
|
for package in $(cat "$tmpdir/click_list")
|
||||||
do
|
do
|
||||||
echo "Setting up $package"
|
echo "Setting up $package"
|
||||||
wget --no-verbose -O "$tmpdir/$package" "$click_uri/$package"
|
wget --no-verbose -O "$tmpdir/$package" "$click_uri/$package"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user