~xnox/debian-cd/cd-boot-images-amd64

« back to all changes in this revision

Viewing changes to tools/groovy/installtools.sh

  • Committer: Dimitri John Ledkov
  • Date: 2020-06-06 02:38:11 UTC
  • mto: This revision was merged to the branch mainline in revision 2064.
  • Revision ID: xnox@ubuntu.com-20200606023811-8vx8tle12fujl64f
groovy: drop unused d-i preseeds

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
fi
42
42
 
43
43
# Preseed files for special install types
44
 
mkdir -p $DIR/preseed
45
44
PRESEED_ROOT=$BASEDIR/data/$CODENAME/preseed
46
45
for preseed_dir in \
47
46
        $PRESEED_ROOT $PRESEED_ROOT/$ARCH \
48
47
        $PRESEED_ROOT/$PROJECT $PRESEED_ROOT/$PROJECT/$ARCH; do
49
48
    [ -d "$preseed_dir" ] || continue
50
49
    for file in $preseed_dir/*.seed; do
 
50
        mkdir -p $DIR/preseed
51
51
        cp -a "$file" $DIR/preseed/
52
52
    done
53
53
done
57
57
            $PRESEED_ROOT/ubuntu-server $PRESEED_ROOT/ubuntu-server/$ARCH; do
58
58
        [ -d "$preseed_dir" ] || continue
59
59
        for file in $preseed_dir/*.seed; do
 
60
            mkdir -p $DIR/preseed
60
61
            cp -a "$file" $DIR/preseed/
61
62
        done
62
63
    done