File:  [LON-CAPA] / doc / loncapafiles / rpmcheck.piml
Revision 1.39: download - view: text, annotated - select for diffs
Wed Mar 29 20:48:25 2017 UTC (7 years ago) by raeburn
Branches: MAIN
CVS tags: version_2_11_2_uiuc, version_2_11_2_msu, version_2_11_2_educog, version_2_11_2, HEAD
- Support Fedora 25

<!DOCTYPE piml PUBLIC "-//TUX/DTD piml 1.0 Final//EN" 
	"http://lpml.sourceforge.net/DTD/piml.dtd">
<!-- phpcheck.piml -->
<!-- Matthew Hall -->

<!-- $Id: rpmcheck.piml,v 1.39 2017/03/29 20:48:25 raeburn Exp $ -->

<!--

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/

-->

<piml>
<targetroot>/</targetroot>
<files>
<file>
<target dist="default">/home/httpd/lonUsers</target>
<perlscript dist="redhat7 fedora1 fedora2 fedora3 fedora4 suse9.2 suse9.3 sles9" mode="fg">
#
# Look for php packages that should not be installed
my @phprpms = `rpm -q -a|grep php`;
if (@phprpms) {
    print "**** WARNING: PHP packages are present on this system.\n".
        "There are known conflicts between PHP libraries and LON-CAPA.\n".
        "Use the following command to remove ".
        "the php packages from your system:\nrpm -e ";
    foreach (@phprpms) {
        chomp;
        print $_.' ';
    }
    print "\n";
}
#
# Look for mod_* that are thought to conflict with LON-CAPA
my @mod_rpms = `rpm -q -a | grep mod`;
foreach my $rpm (@mod_rpms) {
    if ($rpm =~ /mod_bandwidth/) {
        print "**** WARNING: it appears you have the mod_bandwidth ".
        "package installed.\n".
        "mod_bandwidth appears to conflict with LON-CAPA.\n".
        "Use the following command to remove it:\n".
        "rpm -e $rpm\n";
    }
    if ($rpm =~ /mod_throttle/) {
        print "**** WARNING: it appears you have the mod_throttle ".
        "package installed.\n".
        "mod_throttle appears to conflict with LON-CAPA.\n".
        "Use the following command to remove it:\n".
        "rpm -e $rpm\n";
    }
        
}
</perlscript>
<perlscript dist="redhat7" mode="fg">
#
# Look for packages which we need to be present
my @RPMS = `rpm -q -a`;
foreach my $rpm ('gnuplot-3.7.1-5','LON-CAPA-systemperl') {
    my @matching_rpms = grep(/$rpm/,@RPMS);
    if (! @matching_rpms) {
        print "**** WARNING: ".$rpm." does not appear to be installed.\n";
    }
}
</perlscript>
<perlscript dist="fedora1 fedora2 fedora3 fedora4 fedora5 fedora6 fedora7 fedora8 fedora9 fedora10 fedora11 fedora12 fedora13 fedora14 fedora15 fedora16 fedora17 fedora18 fedora19 fedora20 fedora21 fedora22 fedora23 fedora24 fedora25 rhes5 rhes6 rhes7 centos5 scientific5 scientific6 centos6 scientific7 centos7 suse9.2 suse9.3 suse10.1 suse10.2 suse10.3 sles9 sles10 sles11 sles12 suse11.1 suse11.2 suse11.3 suse11.4 suse12.1 suse12.2 suse12.3 suse13.1 suse13.2" mode="fg">
my $hasprereqs = 0;
if (open(PIPE,"rpm -q LONCAPA-prerequisites|")) {
    my @lines = (&lt;PIPE&gt;);
    close(PIPE);
    chomp(@lines);
    foreach my $line (@lines) {
        if ($line =~ /^\QLONCAPA-prerequisites-\E[.\w\-]+$/) {
            $hasprereqs = 1;
            last;
        }
    }
}
if (!$hasprereqs) {
    print "**** WARNING: LONCAPA-prerequisites does not appear to be installed.\n";
}
</perlscript>
<perlscript dist="debian5 debian6 ubuntu8 ubuntu10" mode="fg">
my $hasprereqs = 0;
if (open(PIPE,"dpkg -l loncapa-prerequisites|")) {
    my @lines = (&lt;PIPE&gt;);
    close(PIPE);
    chomp(@lines);
    foreach my $line (@lines) { 
        if ($line =~ /^ii\s+\Qloncapa-prerequisites\E\s+([.\d\-]+)/) {
            $hasprereqs = 1;
            last;
        }
    }
}
if (!$hasprereqs) { 
    print "**** WARNING: loncapa-prerequisites does not appear to be installed.\n";
}
</perlscript>
<perlscript dist="gentoo">
print &lt;&lt;END;
**** WARNING: We don't know much about your distribution.
    Check with the loncapa development team for help satisfying 
    the many dependencies of LON-CAPA.
END
</perlscript>
<perlscript mode="fg">
#
# Look for files which we need to be present
foreach my $file ('/usr/bin/pstops') {
    if (! -e $file) {
        print "**** WARNING: ".$file." does not appear to be installed.\n";
    }
}
</perlscript>
</file>
</files>
</piml>

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