diff options
author | Jeremy Katz <katzj@redhat.com> | 2008-02-27 20:12:37 -0500 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2008-02-28 14:55:06 -0500 |
commit | 6e48880d0b0aa76f139fdca081c5ca48c146ee82 (patch) | |
tree | 512fa299705cd87bc074828a5241fd02aa9d3a0a /scripts/buildinstall | |
parent | 1b04d3026d970814c560d1773cc20581d15eba7f (diff) | |
download | anaconda-6e48880d0b0aa76f139fdca081c5ca48c146ee82.tar.gz anaconda-6e48880d0b0aa76f139fdca081c5ca48c146ee82.tar.xz anaconda-6e48880d0b0aa76f139fdca081c5ca48c146ee82.zip |
Change the ISOs we build
Stop building boot.iso (and diskboot.img) in preference for building a
netinst.iso with the boot bits as well as the second stage. This will
replace the rescue image and is overall far more useful
Diffstat (limited to 'scripts/buildinstall')
-rwxr-xr-x | scripts/buildinstall | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/buildinstall b/scripts/buildinstall index b8e7ea799..abcb066d5 100755 --- a/scripts/buildinstall +++ b/scripts/buildinstall @@ -100,6 +100,10 @@ if [ -z "$OUTPUT" ]; then usage fi +if [ ! -d "$OUTPUT" ]; then + mkdir -p $OUTPUT +fi + yumconf=$(mktemp /tmp/yum.conf.XXXXXX) cat > $yumconf <<EOF [main] |