File:  [LON-CAPA] / loncom / build / distprobe
Revision 1.5: download - view: text, annotated - select for diffs
Mon Nov 24 16:56:47 2003 UTC (20 years, 5 months ago) by matthew
Branches: MAIN
CVS tags: version_1_2_X, version_1_2_1, version_1_2_0, version_1_1_X, version_1_1_99_5, version_1_1_99_4, version_1_1_99_3, version_1_1_99_2, version_1_1_99_1, version_1_1_99_0, version_1_1_3, version_1_1_2, version_1_1_1, version_1_1_0, version_1_0_99_3, version_1_0_99_2, version_1_0_99_1, version_1_0_99, HEAD
Now recognizes Fedora.  Rewrite of some code & reindentation of other code.

#!/usr/bin/perl
#
# The LearningOnline Network with CAPA
#
# $Id: distprobe,v 1.5 2003/11/24 16:56:47 matthew Exp $
#
# Copyright Michigan State University Board of Trustees
#
# This file is part of the LearningOnline Network with CAPA (LON-CAPA).
#
# LON-CAPA is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# LON-CAPA is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with LON-CAPA; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
# /home/httpd/html/adm/gpl.txt
#
# http://www.lon-capa.org/
#

my $dist='default';
if (-e '/etc/redhat-release') {
    open(IN,'</etc/redhat-release');
    my $versionstring=<IN>;
    chomp($versionstring);
    close(IN);
    if ($versionstring =~ /^Red Hat Linux release ([\d\.]+) /) {
        $version = $1;
        if ($version=~/^7\./) {
            $dist='redhat7';
        } elsif ($version=~/^8\./) {
            $dist='redhat8';
        } elsif ($version=~/^9/) {
            $dist='redhat9';
        }
    } elsif ($versionstring =~ /Fedora Core release ([\d\.]+) /) {
        $dist = 'fedora'.$1;
    } else {
        warn('Unable to interpret /etc/redhat-release '.
             'to determine system type');
    }
} elsif (-e '/etc/debian_version') {
    open(IN,'</etc/debian_version');
    my $version=<IN>;
    chomp($version);
    close(IN);
    if ($version eq '2.2') {
	$dist='debian2.2';
    }
} else {
    warn('Unknown installation: expecting a debian or redhat system');
}
print $dist;

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>