~ubuntu-branches/ubuntu/lucid/ltsp/lucid

« back to all changes in this revision

Viewing changes to server/plugins/ltsp-build-client/Ubuntu/000-basic-configuration

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Graber
  • Date: 2010-01-04 19:20:29 UTC
  • mfrom: (111.1.39 upstream)
  • Revision ID: james.westby@ubuntu.com-20100104192029-8kisjo9jwe3ix1ps
Tags: 5.1.99-0ubuntu1
* New upstream version (5.1.99)
 * Implement nbd-proxy for more stability
 * Force netcat to wait for data
 * Properly save/restore IFS
 * Lots of code cleanup
 * Implement vendor specific functions in ltsp-build-client
 * Update translations
 * Optimize localapps rc.d scripts
 * Update add_mirrors and make use of it
 * Implement a caching infrastructure
 * Add Fat client support for Ubuntu
 * Get rid of some awk calls
 * Respect ltsp-build-client.conf defaults
 * Speed up boot process by starting more functions in background
 * Fix tty/vt detection for flickerless boot
 * Make ltsp-build-client usage more consistent.
 * Improve ltsp-logout-action
 *
 * LOTS of other changes and fixes I forgot.

* Get rid of USPLASH=y
* Add two upstart jobs to force a reboot (avoid squashfs errors)
* Trigger update-initramfs post install
* Depend on pciutils and usbutils (as no longer in minimal)
* Move tftpd-hpa from depend to recommend
* Drop dependency on openssh-client | ssh in ltsp-server

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
case "$MODE" in
2
2
    configure)
3
 
        ARCH=$(dpkg --print-architecture)
4
 
        APT_GET_OPTS="--no-install-recommends -y"
 
3
        ARCH=${ARCH:-"$(dpkg --print-architecture)"}
 
4
        APT_GET_OPTS=${APT_GET_OPTS:-"--no-install-recommends -y"}
5
5
        DIST=${DIST:-"$(lsb_release -s -c)"}
6
 
        MIRROR=http://archive.ubuntu.com/ubuntu
7
 
        COMPONENTS="main restricted universe multiverse"
8
 
        EARLY_PACKAGES="ltsp-client ldm dbus"
9
 
        RCS_WHITELIST="mountkernfs.sh mountdevsubfs.sh hostname.sh loopback udev module-init-tools procps.sh etc-setserial ltsp-client-setup setserial console-setup console-screen.kbd.sh"
10
 
        RC2_WHITELIST="klogd sysklogd ltsp-client-core usplash rmnologin dbus"
11
 
        RC6_WHITELIST="reboot"
12
 
        RC0_WHITELIST="halt"
13
 
        OVERRIDE_EXPORTS="true"
 
6
        MIRROR=${MIRROR:-"http://archive.ubuntu.com/ubuntu"}
 
7
        COMPONENTS=${COMPONENTS:-"main restricted universe multiverse"}
 
8
        EARLY_PACKAGES=${EARLY_PACKAGES:-"ltsp-client ldm dbus"}
 
9
        RCS_WHITELIST=${RCS_WHITELIST:-"mountkernfs.sh mountdevsubfs.sh hostname.sh loopback udev module-init-tools procps.sh etc-setserial ltsp-client-setup setserial console-setup console-screen.kbd.sh"}
 
10
        RC2_WHITELIST=${RC2_WHITELIST:-"klogd sysklogd ltsp-client-core usplash rmnologin dbus"}
 
11
        RC6_WHITELIST=${RC6_WHITELIST:-"reboot"}
 
12
        RC0_WHITELIST=${RC0_WHITELIST:-"halt"}
 
13
        OVERRIDE_EXPORTS=${OVERRIDE_EXPORTS:-"true"}
14
14
        export DEBIAN_PRIORITY=critical
15
15
        ;;
16
16
esac