Import patches-unapplied version 2.183 to ubuntu/saucy-proposed

Imported using git-ubuntu import.

Changelog parent: 3fc5871d18

New changelog entries:
  * Make 60-install-click.chroot more verbose, in an attempt to figure out
    why this doesn't work in the datacentre.
impish
Colin Watson 11 years ago committed by usd-importer
parent 3fc5871d18
commit 15d4db0238

7
debian/changelog vendored

@ -1,3 +1,10 @@
livecd-rootfs (2.183) saucy; 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:48:25 +0100
livecd-rootfs (2.182) saucy; urgency=low
* Log the hostname at the start of the build.

@ -1,6 +1,6 @@
#!/bin/sh
set -e
set -ex
echo "Setting up click packages"
@ -22,7 +22,8 @@ tmpdir="$(mktemp -d)"
cleanup () { rm -rf "$tmpdir"; }
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
echo "Setting up $package"
wget --no-verbose -O "$tmpdir/$package" "$click_uri/$package"

Loading…
Cancel
Save