#!/bin/sh case "$1" in start) if [ -f /tmp/automatic-install.lst ] then for package in `cat /tmp/automatic-install.lst` do b=`cat /var/install/url` b=`dirname $b` url="$b/$package.tar.gz" /var/install/bin/install-package -i $package $url $url.info echo "Press RETURN to continue" read dummy done rm -f /tmp/automatic-install.lst fi ;; esac exit 0