Annotation of doc/loncapafiles/rpmcheck.piml, revision 1.5

1.1       matthew     1: <!DOCTYPE piml PUBLIC "-//TUX/DTD piml 1.0 Final//EN" 
                      2: 	"http://lpml.sourceforge.net/DTD/piml.dtd">
                      3: <!-- phpcheck.piml -->
                      4: <!-- Matthew Hall -->
                      5: 
1.5     ! matthew     6: <!-- $Id: rpmcheck.piml,v 1.4 2004/05/25 15:55:04 matthew Exp $ -->
1.1       matthew     7: 
                      8: <!--
                      9: 
                     10: This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                     11: 
                     12: LON-CAPA is free software; you can redistribute it and/or modify
                     13: it under the terms of the GNU General Public License as published by
                     14: the Free Software Foundation; either version 2 of the License, or
                     15: (at your option) any later version.
                     16: 
                     17: LON-CAPA is distributed in the hope that it will be useful,
                     18: but WITHOUT ANY WARRANTY; without even the implied warranty of
                     19: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     20: GNU General Public License for more details.
                     21: 
                     22: You should have received a copy of the GNU General Public License
                     23: along with LON-CAPA; if not, write to the Free Software
                     24: Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     25: 
                     26: /home/httpd/html/adm/gpl.txt
                     27: 
                     28: http://www.lon-capa.org/
                     29: 
                     30: -->
                     31: 
                     32: <piml>
                     33: <targetroot>/</targetroot>
                     34: <files>
                     35: <file>
                     36: <target dist="default">/home/httpd/lonUsers</target>
                     37: <perlscript mode="fg">
1.2       matthew    38: #
                     39: # Look for php packages that should not be installed
1.1       matthew    40: my @phprpms = `rpm -q -a|grep php`;
                     41: if (@phprpms) {
                     42:     print "WARNING: PHP packages are present on this system.\n".
                     43:         "There are known conflicts between PHP libraries and LON-CAPA.\n".
                     44:         "Use the following command to remove ".
                     45:         "the php packages from your system:\nrpm -e ";
                     46:     foreach (@phprpms) {
                     47:         chomp;
                     48:         print $_.' ';
                     49:     }
                     50:     print "\n";
                     51: }
1.2       matthew    52: #
                     53: # Look for mod_* that are thought to conflict with LON-CAPA
1.1       matthew    54: my @mod_rpms = `rpm -q -a | grep mod`;
                     55: foreach my $rpm (@mod_rpms) {
                     56:     if ($rpm =~ /mod_bandwidth/) {
                     57:         print "WARNING: it appears you have the mod_bandwidth ".
                     58:         "package installed.\n".
                     59:         "mod_bandwidth appears to conflict with LON-CAPA.\n".
                     60:         "Use the following command to remove it:\n".
                     61:         "rpm -e $rpm\n";
                     62:     }
1.2       matthew    63:     if ($rpm =~ /mod_throttle/) {
1.1       matthew    64:         print "WARNING: it appears you have the mod_throttle ".
                     65:         "package installed.\n".
                     66:         "mod_throttle appears to conflict with LON-CAPA.\n".
                     67:         "Use the following command to remove it:\n".
                     68:         "rpm -e $rpm\n";
                     69:     }
                     70:         
1.2       matthew    71: }
                     72: #
                     73: # Look for packages which we need to be present
1.5     ! matthew    74: my @RPMS = `rpm -q -a`;
1.3       matthew    75: foreach my $rpm ('psutils','openssl-devel','perl-suidperl',
1.5     ! matthew    76:                  'gnuplot-3.7.1-5','apache-1.3','mod_perl.1',
        !            77:                  '^gzip','^zip-','^bzip2-libs','^unzip','^bzip2','^tar-') {
        !            78:     my @matching_rpms = grep(/$rpm/,@RPMS);
        !            79:     if (! @matching_rpms) {
1.2       matthew    80:         print "WARNING: ".$rpm." does not appear to be installed.\n";
                     81:     }
                     82: }
                     83: #
                     84: # Look for files which we need to be present
                     85: foreach my $file ('/usr/bin/pstops') {
                     86:     if (! -e $file) {
                     87:         print "WARNING: ".$file." does not appear to be installed.\n";
                     88:     }
1.1       matthew    89: }
                     90: </perlscript>
                     91: </file>
                     92: </files>
                     93: </piml>

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