mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-13 22:28:27 +00:00
Imported using git-ubuntu import. Changelog parent: 6dff961906e77896bb6fa06838aafe0c15bf7a7f New changelog entries: * Run builds under eatmydata. (This doesn't actually seem to help very much - it shaves a minute off a 48-minute test build on my laptop - but it will stop people being distracted by it.) * Remove livecd.py, which was never finished. * Remove all vestiges of livecd.sh and ubuntu-touch-android.sh. Requiescant in pace. * Temporarily disable Click package installation, until desktop/AppArmor integration has landed properly.
23 lines
500 B
Bash
Executable File
23 lines
500 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cat <<EOF
|
|
Click package installation temporarily disabled until desktop/AppArmor
|
|
integration is all working properly.
|
|
EOF
|
|
exit 0
|
|
|
|
set -e
|
|
|
|
echo "Setting up click packages"
|
|
|
|
click_uri=http://archive-team.internal/click_packages
|
|
click_list=$click_uri/click_list
|
|
|
|
for package in $(wget -qO- "$click_list")
|
|
do
|
|
echo "Setting up $package"
|
|
wget --no-verbose -O "$package" "$click_uri"/"$package"
|
|
click install --user=phablet --force-missing-framework "$package"
|
|
rm "$package"
|
|
done
|