~didrocks/ubiquity/intall-metrics

« back to all changes in this revision

Viewing changes to compat/apt-install

  • Committer: Colin Watson
  • Date: 2006-04-21 11:39:15 UTC
  • Revision ID: colin.watson@canonical.com-20060421113915-7d2d711cd6afc4f5
* Rename from espresso to ubiquity, to better suggest an association with
  Ubuntu. Log output now written to /var/log/installer/syslog rather than
  using the package name.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /bin/sh -e
2
 
mkdir -p /var/lib/espresso
 
2
mkdir -p /var/lib/ubiquity
3
3
for package; do
4
 
        echo "$package" >> /var/lib/espresso/apt-installed
 
4
        echo "$package" >> /var/lib/ubiquity/apt-installed
5
5
done
6
6
# TODO: use chroot-setup
7
7
DEBIAN_FRONTEND=noninteractive DEBCONF_ADMIN_EMAIL= chroot /target apt-get --no-upgrade -o Acquire::gpgv::Options::=--ignore-time-conflict -y install "$@" </dev/null