RTFS :) It's python.

Included is a small shell script for running anaconda in test mode.
It takes one argument -- location of the Red Hat distribution (the directory
that contains RedHat)

This is for 6.1 anaconda, may or may not work with 6.2beta.

/Simon

        #!/bin/sh
        # Run Anaconda in test mode
        # Simon Epsteyn <[EMAIL PROTECTED]>
        
        if [ "$1" != "" ]; then
                DIST=$1
        else
                DIST=/mnt/611
        fi
        
        if [ ! -e "$DIST/RedHat" ]; then
                echo "No Red Hat or Fermi Linux distro found in $DIST" >&2
                exit
        fi
        
        PYTHONPATH=$DIST/RedHat/instimage/usr/lib/python1.5/site-packages
        export PYTHONPATH
        
        $DIST/RedHat/instimage/usr/bin/anaconda --test -T -m dir:$DIST


On Wed, 23 Feb 2000, Frank Hale wrote:

> What is the proper method of executing Anaconda for
> purpose of testing changes made to it? I've tried
> copying it from the redhat cd to my drive and running
> it but it does not run. I get error messages
> everytime. Also no documentation comes with it, is
> there somewhere I can find some? 
> 
> Thanks,
> Frank
> 
> 
> =====
> ICQ: 7205161
> http://sapphire.sourceforge.net - Another X11 Window Manager
> __________________________________________________
> Do You Yahoo!?
> Talk to your friends online with Yahoo! Messenger.
> http://im.yahoo.com
> 
> 


-- 
To unsubscribe:
mail -s unsubscribe [EMAIL PROTECTED] < /dev/null

Reply via email to