Changeset 1539 in MondoRescue for branches/stable


Ignore:
Timestamp:
Jul 20, 2007, 12:43:10 AM (17 years ago)
Author:
Bruno Cornec
Message:

Adds support for fedora 7 to stable

Location:
branches/stable/tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/tools/DISTROS

    r1508 r1539  
    99fedora_5
    1010fedora_6
     11fedora_7
    1112rhel_2.1
    1213rhel_3
  • branches/stable/tools/distro-env

    r1474 r1539  
    2626        elif grep -q Fedora /etc/redhat-release ; then
    2727            export ddir="fedora"
    28             export dver=`awk '{print $4}' /etc/redhat-release`
     28            grep -qi core /etc/redhat-release
     29            if [ $? -eq 0 ]; then
     30                export dver=`awk '{print $4}' /etc/redhat-release`
     31            else
     32                export dver=`awk '{print $3}' /etc/redhat-release`
     33            fi
    2934        elif grep -q CentOS /etc/redhat-release ; then
    3035            export ddir="centos"
  • branches/stable/tools/qemu-vm.txt

    r1536 r1539  
    4444passwd bruno
    4545
     46# Remote connection looks like:
     47ssh -p 2223 -o UserKnownHostsFile=/tmp/1 bruno@localhost
     48
     49# Or locally
    4650su - bruno
    4751mkdir -p mondo/tmp build
Note: See TracChangeset for help on using the changeset viewer.