Annotation of loncom/build/distprobe, revision 1.14

1.1       harris41    1: #!/usr/bin/perl
1.5       matthew     2: #
                      3: # The LearningOnline Network with CAPA
                      4: #
1.14    ! raeburn     5: # $Id: distprobe,v 1.13 2007/05/31 13:36:53 raeburn Exp $
1.5       matthew     6: #
                      7: # Copyright Michigan State University Board of Trustees
                      8: #
                      9: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                     10: #
                     11: # LON-CAPA is free software; you can redistribute it and/or modify
                     12: # it under the terms of the GNU General Public License as published by
                     13: # the Free Software Foundation; either version 2 of the License, or
                     14: # (at your option) any later version.
                     15: #
                     16: # LON-CAPA is distributed in the hope that it will be useful,
                     17: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     18: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     19: # GNU General Public License for more details.
                     20: #
                     21: # You should have received a copy of the GNU General Public License
                     22: # along with LON-CAPA; if not, write to the Free Software
                     23: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     24: #
                     25: # /home/httpd/html/adm/gpl.txt
                     26: #
                     27: # http://www.lon-capa.org/
                     28: #
1.1       harris41   29: 
                     30: my $dist='default';
                     31: if (-e '/etc/redhat-release') {
                     32:     open(IN,'</etc/redhat-release');
                     33:     my $versionstring=<IN>;
                     34:     chomp($versionstring);
                     35:     close(IN);
1.5       matthew    36:     if ($versionstring =~ /^Red Hat Linux release ([\d\.]+) /) {
                     37:         $version = $1;
                     38:         if ($version=~/^7\./) {
                     39:             $dist='redhat7';
                     40:         } elsif ($version=~/^8\./) {
                     41:             $dist='redhat8';
                     42:         } elsif ($version=~/^9/) {
                     43:             $dist='redhat9';
                     44:         }
1.13      raeburn    45:     } elsif ($versionstring =~ /Fedora( Core)? release ([\d\.]+) /) {
                     46: 	my $version=$2;
1.7       albertel   47: 	if ($version - int($version) > .9) {
                     48: 	    $dist = 'fedora'.(int($version)+1);
                     49: 	} else {
                     50: 	    $dist = 'fedora'.int($version);
                     51: 	}
1.9       albertel   52:     } elsif ($versionstring =~ /Red Hat Enterprise Linux [AE]S release ([\d\.]+) /) {
1.8       raeburn    53:         $dist = 'rhes'.$1;
1.12      raeburn    54:     } elsif ($versionstring =~ /Red Hat Enterprise Linux Server release (\d+)/) {
                     55:         $dist = 'rhes'.$1;
1.14    ! raeburn    56:     } elsif ($versionstring =~ /CentOS release (\d+)/) {
        !            57:         $dist = 'centos'.$1;
        !            58:     } elsif ($versionstring =~ /Scientific Linux SL release ([\d\.]+) /) {
        !            59:         $dist = 'scientific'.$1;
1.5       matthew    60:     } else {
                     61:         warn('Unable to interpret /etc/redhat-release '.
                     62:              'to determine system type');
1.1       harris41   63:     }
1.5       matthew    64: } elsif (-e '/etc/debian_version') {
1.1       harris41   65:     open(IN,'</etc/debian_version');
                     66:     my $version=<IN>;
                     67:     chomp($version);
                     68:     close(IN);
                     69:     if ($version eq '2.2') {
                     70: 	$dist='debian2.2';
                     71:     }
1.6       albertel   72: } elsif (-e '/etc/SuSE-release') {
                     73:     open(IN,'</etc/SuSE-release');
                     74:     my $versionstring=<IN>;
                     75:     chomp($versionstring);
                     76:     close(IN);
1.10      raeburn    77:     if ($versionstring =~ /^SUSE LINUX Enterprise Server ([\d\.]+) /i) {
1.6       albertel   78:         $dist='sles'.$1;
1.10      raeburn    79:     } elsif ($versionstring =~ /^SuSE Linux ([\d\.]+) /i) {
1.6       albertel   80:         $dist = 'suse'.$1;
1.11      raeburn    81:     } elsif ($versionstring =~ /^openSUSE ([\d\.]+) /i) {
                     82:         $dist = 'suse'.$1;
1.6       albertel   83:     } else {
                     84:         warn('Unable to interpret /etc/SuSE-release '.
                     85:              'to determine system type');
                     86:     }
1.5       matthew    87: } else {
1.6       albertel   88:     warn('Unknown installation: expecting a debian, suse, or redhat system');
1.1       harris41   89: }
                     90: print $dist;

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