Annotation of doc/install/redhat7.3/install.pl, revision 1.23

1.1       matthew     1: #!/usr/bin/perl -w
                      2: # The LearningOnline Network 
                      3: # Red Hat 7.3 installation script
                      4: #
1.23    ! matthew     5: # $Id: install.pl,v 1.22 2003/08/11 20:47:57 matthew Exp $
1.1       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: # http://www.lon-capa.org/
                     26: #
1.2       matthew    27: 
1.1       matthew    28: ##
                     29: ## Obvious flaws of this program: 
                     30: ##   Dieing on every error may be a little extreme.  On the other hand, 
                     31: ##       how the heck am I supposed to know what absurd things the user 
                     32: ##       has done with their system before inflicting LON-CAPA on it?
                     33: ##   The links to /etc/init.d for httpd and mysqld do not seem to work :(
                     34: ##   The user is never informed of the log file (/tmp/loncapa_install.log).
                     35: ##   It does not test the system at the end.  Again, there are limits to 
                     36: ##       what nonsense we can put up with.  Of course, we will have to 
                     37: ##       explain that to people at some point...
                     38: ##   There is probably an overuse of elipses (...) in the comments.
1.2       matthew    39: ##   It might be nice to check that all the files we need are here.
                     40: ##   Appletalk is installed but does not work and gives errors on
                     41: ##       boot up.  I have not been able to find a clean way to get the
                     42: ##       appletalk support working but the powers that be insist on it.
1.1       matthew    43: ##
1.2       matthew    44: 
                     45: #
                     46: # Needed files:
                     47: #
                     48: #    The following files are assumed to be present in the current
                     49: #    directory:
                     50: #      RPMS:
1.3       matthew    51: #        ImageMagick-5.4.3.11-1.i386.rpm
                     52: #        ImageMagick-devel-5.4.3.11-1.i386.rpm
                     53: #        ImageMagick-perl-5.4.3.11-1.i386.rpm
1.2       matthew    54: #        gnuplot-3.7.1-5.i386.rpm
                     55: #        libgd-1.3-4.i386.rpm
                     56: #        libungif-progs-4.1.0-9.i386.rpm
                     57: #        ncurses4-5.0-5.i386.rpm
                     58: #        readline-2.2.1-6.i386.rpm
                     59: #        readline-4.2a-4.i386.rpm
                     60: #        perl-DBD-MySQL-1.2216-4.i386.rpm
                     61: #        perl-DBI-1.21-1.i386.rpm
                     62: #        mod_perl-1.26-5.i386.rpm
                     63: #        perl-suidperl-5.6.1-34.99.6.i386.rpm
1.16      matthew    64: #        LON-CAPA-systemperl-3.5-rh7.i386.rpm
1.2       matthew    65: #        mysql-3.23.49-3.i386.rpm
                     66: #        mysqlclient9-3.23.22-6.i386.rpm
                     67: #        mysql-server-3.23.49-3.i386.rpm
                     68: #        hwcrypto-1.0-3.i386.rpm
                     69: #        m2crypto-0.05_snap4-2.i386.rpm
1.12      matthew    70: #        netpbm-9.24-3.i386.rpm
                     71: #        netpbm-progs-9.24-3.i386.rpm
                     72: #        krb5-libs-1.2.4-3.i386.rpm
1.2       matthew    73: #      Other files:
                     74: #        httpd.conf
                     75: #        mod_auth_external-2.1.13.tar.gz
                     76: #
                     77: #    The contingency plan for a 7.2 install tells the user to install these
                     78: #    from the current directory.
                     79: #        perl-5.6.1-34.99.6.i386.rpm
                     80: #        perl-CGI-2.752-34.99.6.i386.rpm
                     81: #
                     82: 
1.1       matthew    83: use strict;
                     84: use File::Copy;
                     85: 
                     86: my $result; 
                     87: my $test;
                     88: 
                     89: # note: The filehandle LOG is global.
1.14      matthew    90: open LOG,">loncapa_install.log" || die "Unable to open log file.\n";
1.21      matthew    91: 
1.23    ! matthew    92: print LOG '$Id: install.pl,v 1.22 2003/08/11 20:47:57 matthew Exp $'."\n";
1.1       matthew    93: 
                     94: # Some friendly subroutines
                     95: sub die_if_nonempty {
                     96:     my ($string,$error)=@_;
                     97:     return if (! defined($error));
                     98:     chomp($string);chomp($error);
                     99:     if ($string ne '') {
                    100:         print_and_log("$error\nHalting.\n");
                    101:         die;
                    102:     }
                    103: }
                    104: 
                    105: sub make_link_or_die {
                    106:     my ($source,$dest)=@_;
                    107:     &die_if_nonempty
                    108:         (`ln -fs $source $dest`,"Unable to link $source to $dest.");
                    109:     print LOG "Link from $source to $dest made successfully\n";
                    110: }
                    111: 
                    112: sub writelog {
                    113:     while ($_ = shift) {
                    114:         chomp;
                    115:         print LOG "$_\n";
                    116:     }
                    117: }
                    118: 
                    119: sub print_and_log {
                    120:     while ($_=shift) {
                    121:         chomp;
                    122:         print "$_\n";
                    123:         print LOG "$_\n";
                    124:     }
                    125: }
                    126: 
                    127: ##
                    128: ## First, make sure it's a red hat system.
                    129: ##
                    130: if (! -e "/etc/redhat-release") {
                    131:     print_and_log(<<"END");
                    132: *********************************************************************
                    133: 
                    134: This does not a appear to be a Red-Hat system.  More than likely the 
                    135: installation will not be successful!  Press control-c to abort now, 
                    136: otherwise press enter to forge ahead and damn the torpedos.
                    137: 
                    138: *********************************************************************
                    139: END
                    140:     undef = <STDIN>;
                    141: }
                    142: 
                    143: 
                    144: 
                    145: #
                    146: # The installation work begins now...
                    147: #
                    148: 
                    149: print <<"END";
                    150: ********************************************************************
                    151: 
1.20      matthew   152:                     Welcome to LON-CAPA 
1.1       matthew   153: 
                    154: This script will install the base software that LON-CAPA needs to
                    155: run properly. 
                    156: 
                    157: ********************************************************************
                    158: END
                    159: 
                    160: ##
                    161: ## Install needed RPMS
                    162: ##
                    163: my $instdir = `pwd`;
                    164: chomp($instdir);
                    165: # 
                    166: # This list of rpms needs to be pared down to some extent.
                    167: #
                    168: 
1.4       matthew   169: my @apache_rpms = (
1.16      matthew   170:              "$instdir/apache-1.3.23-14.i386.rpm",
1.4       matthew   171:                    );
                    172: 
                    173: my @openssh_rpms = (
                    174:              "$instdir/openssh-3.1p1-6.i386.rpm",
                    175:              "$instdir/openssh-askpass-3.1p1-6.i386.rpm",
                    176:              "$instdir/openssh-clients-3.1p1-6.i386.rpm",
                    177:              "$instdir/openssh-server-3.1p1-6.i386.rpm"
                    178:                 );
1.16      matthew   179: 
1.4       matthew   180: # Check for gnome-askpass installation.
                    181: if (-e "/etc/profile.d/gnome-ssh-askpass.sh") {
                    182:     push @openssh_rpms,"$instdir/openssh-askpass-gnome-3.1p1-6.i386.rpm";
                    183: }
                    184: 
1.16      matthew   185: my @ImageMagick_rpms = ( 
1.3       matthew   186:              "$instdir/ImageMagick-5.4.3.11-1.i386.rpm",
                    187:              "$instdir/ImageMagick-devel-5.4.3.11-1.i386.rpm",
                    188:              "$instdir/ImageMagick-perl-5.4.3.11-1.i386.rpm",
                    189:                        );
                    190: 
1.16      matthew   191: my @mysql_rpms = (
                    192:              "$instdir/mysql-3.23.49-3.i386.rpm",
                    193:              "$instdir/mysqlclient9-3.23.22-6.i386.rpm",
                    194:              "$instdir/mysql-server-3.23.49-3.i386.rpm",
                    195:                   );
                    196: 
1.1       matthew   197: my @perl_rpms = ( 
                    198:              "$instdir/perl-DBD-MySQL-1.2216-4.i386.rpm",
                    199:              "$instdir/perl-DBI-1.21-1.i386.rpm",
                    200:              "$instdir/perl-suidperl-5.6.1-34.99.6.i386.rpm",
                    201:                  );
1.16      matthew   202: 
                    203: my @old_readline_rpms = (
                    204:              "$instdir/readline-2.2.1-6.i386.rpm", # requires -i --oldpackage, 
                    205:                                                    # not -Uvh
                    206:                          );
                    207: my @gnuplot_rpms = ( # must be done after readline-2.2.1-6
                    208:              "$instdir/libgd-1.3-4.i386.rpm", 
                    209:              "$instdir/libungif-progs-4.1.0-9.i386.rpm",
                    210:              "$instdir/ncurses4-5.0-5.i386.rpm",
                    211:              "$instdir/gnuplot-3.7.1-5.i386.rpm",
                    212:                     );
                    213: 
1.1       matthew   214: my @loncapa_perl_rpms = (
1.12      matthew   215:              "$instdir/netpbm-9.24-3.i386.rpm",
                    216:              "$instdir/netpbm-progs-9.24-3.i386.rpm",
                    217:              "$instdir/krb5-libs-1.2.4-3.i386.rpm",
1.13      matthew   218:              "$instdir/krb5-devel-1.2.4-3.i386.rpm",
1.12      matthew   219:              "$instdir/LON-CAPA-krb4-3.1-1.i386.rpm",
1.1       matthew   220:                     );
                    221: my @misc_rpms = (
1.16      matthew   222:              "$instdir/m2crypto-0.05_snap4-2.i386.rpm",
                    223:              "$instdir/tetex-dvips-1.0.7-47.i386.rpm",
                    224:              "$instdir/ntp-4.1.1-1.i386.rpm",
                    225:              "$instdir/libcap-1.10-8.i386.rpm",
1.1       matthew   226:              );
1.16      matthew   227: 
1.22      matthew   228: my $systemperl = "$instdir/LON-CAPA-systemperl-3.7-rh7.i386.rpm";
1.16      matthew   229: 
                    230: ##
                    231: ## Some of these rpm commands require being obnoxious (--force --nodeps)
                    232: ## this is not a nice thing to do and we should be careful about it.
1.1       matthew   233: ##
1.16      matthew   234: 
                    235: &print_and_log("Installing Apache packages.\n");
                    236: &writelog (`rpm -Uvh @apache_rpms`);
                    237: &print_and_log("Installing openssh packages.\n");
                    238: &writelog (`rpm -Uvh @openssh_rpms`);
                    239: &writelog(`/etc/init.d/sshd start`);
                    240: &print_and_log("Installing ImageMagick packages.\n");
                    241: &writelog (`rpm -Uvh @ImageMagick_rpms`);
                    242: &print_and_log("Installing mysql packages.\n");
                    243: &writelog (`rpm -Uvh @mysql_rpms`);
                    244: &print_and_log("Installing Perl packages.\n");
                    245: &writelog (`rpm -Uvh @perl_rpms`);
                    246: &print_and_log("Installing legacy readline package (required for gnuplot).");
                    247: &writelog(`rpm -i --oldpackage @old_readline_rpms`);
                    248: &print_and_log("Installing gnuplot packages.\n");
                    249: &writelog (`rpm -ivh --force --nodeps @gnuplot_rpms`);
                    250: &print_and_log("Installing LON-CAPA Perl packages.\n");
                    251: &writelog (`rpm -Uvh @loncapa_perl_rpms`);
                    252: &print_and_log("Installing misc packages.\n");
                    253: &writelog (`rpm -Uvh @misc_rpms`);
                    254: &print_and_log("Installing LON-CAPA systemperl rpm");
                    255: &writelog(`rpm -ivh --force --nodeps $systemperl`);
                    256: &print_and_log("\n");
                    257: 
                    258: 
                    259: ##
                    260: ## Remove conflicting packages
                    261: ##
                    262: my @php_rpms = ("php-imap-4.1.2-7",
                    263:                 "asp2php-0.76.2-1",
                    264:                 "php-ldap-4.1.2-7",
                    265:                 "php-devel-4.1.2-7",
1.19      matthew   266:                 "php-4.1.2-7",
                    267: 	        "php-pgsql-4.1.2-7");
1.16      matthew   268: 
                    269: &print_and_log("Removing php packages");
                    270: foreach my $php_rpm (@php_rpms) {
                    271:     my $remove_error = system("rpm -e --nodeps ".$php_rpm);
                    272:     if ($remove_error) {
                    273:         &print_and_log("Unable to remove ".$php_rpm.".  ".
                    274:                        "Assuming it is not present.\n");
                    275:     } else {
                    276:         &writelog("Successfully removed ".$php_rpm);
                    277:     }
                    278: }
1.23    ! matthew   279: 
        !           280: &print_and_log("Removing mod_throttle");
        !           281: system("rpm -e `rpm -q -a | grep mod_throttle`");
        !           282: &print_and_log("Removing mod_bandwidth");
        !           283: system("rpm -e `rpm -q -a | grep mod_bandwidth`");
1.1       matthew   284: 
                    285: ##
                    286: ## Fix that stupid little sendmail bug
                    287: ##
                    288: print_and_log("changing permissions on root directory.\n");
                    289: $result = `chmod g-w,u+w /`;
                    290: if ($result eq '') {
                    291:     $result = "successful\n";
                    292: } else {
                    293:     die "Unable to change permissions on root directory.  Halting.\n";
                    294: }
                    295: writelog ($result);
                    296: print_and_log("\n");
                    297: 
                    298: ##
                    299: ## Set up www and authentication
                    300: ##
                    301: print_and_log("Creating user 'www'\n");
                    302: $result = `/usr/sbin/useradd www`;
                    303: if (! (($result eq '') || ($result =~ /user www exists/))) {
                    304:     die "Unable to add user www.  Halting.\n";
                    305: }
                    306: writelog ($result);
                    307: my $num = `grep ^www /etc/passwd | cut -d':' -f3`;
                    308: chomp $num;
                    309: if (int($num) == $num) {
                    310:     writelog ("uid of www = $num\n");
                    311: } else {
                    312:     die "Unable to determine UID of user www\n  Halting.\n";
                    313: }
                    314: print_and_log("\n");
                    315: 
                    316: ##
                    317: ## Patch mod_auth_external
                    318: ##
                    319: print_and_log("Setting up authentication for 'www'\n");
                    320: my $patch = <<"ENDPATCH";
                    321: 148c148
                    322: < #define SERVER_UIDS 99		/* user "nobody" */
                    323: ---
                    324: > #define SERVER_UIDS $num		/* user "www" */
                    325: ENDPATCH
                    326: 
                    327: if (! -e "/usr/bin/patch") {
                    328:     print_and_log("You must install the software development tools package ".
                    329:                   "when installing RedHat.\n");
                    330:     die;
                    331: }
                    332: &die_if_nonempty(`cd /tmp; tar zxf $instdir/mod_auth_external-2.1.13.tar.gz`,
                    333:                  "Unable to extract mod_auth_external\n");
                    334: my $dir = "/tmp/mod_auth_external-2.1.13/pwauth";
                    335: open PATCH, "| patch $dir/config.h" || 
                    336:     die "Unable to start patch for mod_auth_external.  Halting\n";
                    337: print PATCH $patch;
                    338: close PATCH;
                    339: print_and_log("\n");
                    340: 
                    341: ##
                    342: ## Compile patched pwauth
                    343: ##
                    344: print_and_log("Compiling pwauth\n");
                    345: $result = `cd $dir/; make`;
                    346: my $expected = <<"END";
                    347: gcc -g    -c -o pwauth.o pwauth.c
                    348: gcc -o pwauth -g  pwauth.o -lcrypt
                    349: END
                    350: 
                    351: if ($result ne $expected) {
                    352:     die "Unable to compile patched pwauth.  Halting.\n";
                    353: }    
                    354: print_and_log( $result );
                    355: 
                    356: ##
                    357: ## Install patched pwauth
                    358: ##
                    359: print_and_log("Copying pwauth to /usr/local/sbin\n");
                    360: if (! copy "$dir/pwauth","/usr/local/sbin/pwauth") {
                    361:     die "Unable to copy $dir/pwauth to /usr/local/sbin/pwauth.\n$!\nHalting\n";
                    362: }
                    363: if (! chmod (06755, "/usr/local/sbin/pwauth")) {
                    364:     die "Unable to set permissions on /usr/local/sbin/pwauth.\n";
                    365: }
                    366: print_and_log("\n");
                    367: 
                    368: ##
                    369: ## Set up mysql
                    370: ##
                    371: print_and_log("Setting mysqld to start on boot up.\n");
1.18      harris41  372: system("/sbin/chkconfig --add mysqld");
                    373: system("/sbin/chkconfig mysqld on");
                    374: &writelog(`/sbin/chkconfig --list mysqld`);
1.1       matthew   375: 
                    376: writelog("mysql links created successfully\n");
                    377: writelog(`/etc/rc.d/init.d/mysqld start`);
                    378: print_and_log("Waiting for mysql daemon to start.\n");
                    379: sleep 5;
1.4       matthew   380: my $status = system("/etc/rc.d/init.d/mysqld status");
                    381: if ($status != 0) {
1.1       matthew   382:     die "Unable to start mysql daemon\nHalting\n";
1.4       matthew   383: } else {
                    384:     print_and_log("Mysql daemon is running.\n");
1.1       matthew   385: }
                    386: print_and_log("\n");
                    387: 
                    388: ##
                    389: ## Get root password for mysql client
                    390: ##
                    391: print <<END;
                    392: Please enter a root password for the mysql database.
                    393: It does not have to match your root account password, but you will need
                    394: to remember it.
                    395: END
                    396: my $rootpass = <>;
                    397: chomp $rootpass;
                    398: print_and_log("\n");
                    399: 
                    400: ##
                    401: ## Run the damn thing (mysql, not LON-CAPA)
                    402: ##
                    403: print_and_log("Starting mysql client.\n");
                    404: open MYSQL, "|mysql -u root mysql" || die "Unable to start mysql\n";
                    405: print MYSQL <<"ENDMYSQL";
                    406: CREATE DATABASE loncapa;
                    407: INSERT INTO user (Host, User, Password)
                    408: VALUES ('localhost','www',password('localhostkey'));
1.11      harris41  409: INSERT INTO db VALUES ('localhost','loncapa','www',
                    410: 'Y','Y','Y','Y','Y','Y','N','Y','Y','Y');
1.1       matthew   411: SET PASSWORD FOR root\@localhost=PASSWORD('$rootpass');
                    412: DELETE FROM user WHERE host<>'localhost';
                    413: FLUSH PRIVILEGES;
                    414: USE loncapa;
                    415: CREATE TABLE IF NOT EXISTS metadata (title TEXT, author TEXT, subject TEXT, url TEXT, keywords TEXT, version TEXT, notes TEXT, abstract TEXT, mime TEXT, language TEXT, creationdate DATETIME, lastrevisiondate DATETIME, owner TEXT, copyright TEXT, FULLTEXT idx_title (title), FULLTEXT idx_author (author), FULLTEXT idx_subject (subject), FULLTEXT idx_url (url), FULLTEXT idx_keywords (keywords), FULLTEXT idx_version (version), FULLTEXT idx_notes (notes), FULLTEXT idx_abstract (abstract), FULLTEXT idx_mime (mime), FULLTEXT idx_language (language), FULLTEXT idx_owner (owner), FULLTEXT idx_copyright (copyright)) TYPE=MYISAM;
                    416: EXIT
                    417: ENDMYSQL
                    418: 
                    419: close MYSQL;
                    420: print_and_log("\n");
                    421: 
                    422: ##
1.17      matthew   423: ## Remove the firewall.
1.1       matthew   424: ##
1.18      harris41  425: system("/sbin/chkconfig ipchains off");
1.17      matthew   426: system("/etc/init.d/ipchains stop");
1.19      matthew   427: system("/sbin/chkconfig iptables off");
                    428: system("/etc/init.d/iptables stop");
1.17      matthew   429: 
                    430: # Someday we will add these to /etc/sysconfig/ipchains.
                    431: #  "-A input -s 0/0 -d 0/0 8080 -p tcp -y -j ACCEPT",
                    432: #  "-A input -s 0/0 -d 0/0 5663 -p tcp -y -j ACCEPT"
                    433: # Someday we will deal with iptables, too.  Soon.
1.1       matthew   434: 
                    435: ##
                    436: ## Set up httpd 
                    437: ##
                    438: print_and_log("Setting httpd to start on boot up.\n");
1.18      harris41  439: system("/sbin/chkconfig httpd on");
1.1       matthew   440: 
                    441: ##
                    442: ## Copy our (probably lousy) httpd.conf to its rightful place
                    443: ##
                    444: print_and_log("Copying our httpd.conf to /etc/httpd/conf/httpd.conf\n");
                    445: copy "$instdir/httpd.conf","/etc/httpd/conf/httpd.conf";
                    446: chmod 0444,"/etc/httpd/conf/httpd.conf";
                    447: print_and_log("\n");
                    448: 
                    449: ##
                    450: ## Retrieve loncapa.tar.gz
                    451: ##
1.15      matthew   452: my $lctarball = 'loncapa-current.tar.gz';
                    453: if (! -e "$instdir/$lctarball") {
                    454:     print_and_log("Retrieving LON-CAPA source files from install.loncapa.org\n")
                    455: ;
1.16      matthew   456:     system("wget http://install.loncapa.org/versions/$lctarball 2>/dev/null 1>/dev/null");
1.15      matthew   457:     if (! -e "./$lctarball") {
1.1       matthew   458:         die("Unable to retrieve LON-CAPA source files from\n".
1.15      matthew   459:             "http://install.loncapa.org/versions/$lctarball\n");
1.1       matthew   460:     }
                    461:     print_and_log("\n");
                    462: } else {
                    463:     print_and_log(<<"END");
                    464: ------------------------------------------------------------------------
                    465: 
1.5       harris41  466: You seem to have a version of loncapa-current.tar.gz in $instdir.  
1.1       matthew   467: This copy will be used and a new version will NOT be downloaded.  
                    468: If you wish, you may download a new version by executing:
                    469: 
1.5       harris41  470: wget http://install.loncapa.org/versions/loncapa-current.tar.gz
1.1       matthew   471: 
                    472: ------------------------------------------------------------------------
                    473: END
                    474: }
                    475: 
                    476: ##
                    477: ## untar loncapa.tar.gz
                    478: ##
                    479: print_and_log("Extracting LON-CAPA source files\n");
1.5       harris41  480: writelog(`cd ~root; tar zxf $instdir/loncapa-current.tar.gz`);
1.1       matthew   481: print_and_log("\n");
                    482: 
                    483: my $version = `cat /etc/redhat-release`;
                    484: if ($version =~ /7\.2/) {
                    485:     print_and_log(<<"END");
                    486: This appears to be a Red Hat 7.2 system.  You need to execute the following
                    487: commands now:
                    488: rpm -Uvh perl-5.6.1-34.99.6.i386.rpm
                    489: rpm -Uvh perl-CGI-2.752-34.99.6.i386.rpm
                    490: 
1.7       harris41  491: cd /root/loncapa-N.N     (N.N should correspond to a version number like '0.4')
1.1       matthew   492: ./UPDATE
                    493: 
                    494: END
                    495: } else {
                    496:     ##
                    497:     ## Assure them that everything worked okay....
                    498:     ##
                    499:     print <<"ENDMSG";
                    500: All of the extra files seem to have been installed correctly.  It remains for 
                    501: you to execute the following commands:
                    502: 
1.7       harris41  503: cd /root/loncapa-N.N     (N.N should correspond to a version number like '0.4')
1.1       matthew   504: ./UPDATE
                    505: 
1.5       harris41  506: If you have any trouble, please see http://install.loncapa.org/ and 
                    507: http://help.loncapa.org/.  
1.1       matthew   508: ENDMSG
                    509: }
                    510: 
                    511: close LOG;
1.4       matthew   512: 

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