~xubuntu-dev/ubuntu-cdimage/xubuntu-base

« back to all changes in this revision

Viewing changes to bin/run-germinate

  • Committer: Colin Watson
  • Date: 2004-10-21 16:18:02 UTC
  • Revision ID: Arch-1:colin.watson@canonical.com--2004%cdimage--mainline--0--patch-56
Move DIST and ARCHES assignments to etc/config, and source that everywhere.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
set -e
3
3
 
4
4
CDIMAGE_ROOT=/srv/cdimage.no-name-yet.com
 
5
. "$CDIMAGE_ROOT/etc/config"
 
6
 
5
7
GERMINATE_OUT="$CDIMAGE_ROOT/scratch/germinate"
6
8
 
7
 
DIST="${DIST:-warty}"
8
 
ARCHES="${ARCHES:-amd64 i386 powerpc}"
9
 
 
10
9
mkemptydir () {
11
10
        rm -rf "$1"
12
11
        mkdir -p "$1"