source: trunk/packages/invirt-autoinstaller/common/usr/lib/xen-tools/debian.d/98-install-base-system @ 2073

Last change on this file since 2073 was 2073, checked in by broder, 15 years ago

The autoinstaller should install ubuntu-minimal and ubuntu-standard.

  • Property svn:executable set to *
File size: 427 bytes
Line 
1#!/bin/sh
2#
3#  This script installs the sort of things you expect on an Ubuntu
4#  system
5#
6
7prefix=$1
8
9#
10#  Source the common functions
11#
12if [ -e /usr/lib/xen-tools/common.sh ]; then
13    . /usr/lib/xen-tools/common.sh
14else
15    . ./hooks/common.sh
16fi
17
18logMessage Script $0 starting
19
20installDebianPackage ${prefix} ubuntu-minimal
21installDebianPackage ${prefix} ubuntu-standard
22
23#
24# Log our finish
25#
26logMessage Script $0 finished
Note: See TracBrowser for help on using the repository browser.