--- doc/install/redhat7.3/install.pl 2003/01/07 20:48:53 1.17 +++ doc/install/redhat7.3/install.pl 2003/01/08 02:48:01 1.18 @@ -2,7 +2,7 @@ # The LearningOnline Network # Red Hat 7.3 installation script # -# $Id: install.pl,v 1.17 2003/01/07 20:48:53 matthew Exp $ +# $Id: install.pl,v 1.18 2003/01/08 02:48:01 harris41 Exp $ # # Copyright Michigan State University Board of Trustees # @@ -361,9 +361,9 @@ print_and_log("\n"); ## Set up mysql ## print_and_log("Setting mysqld to start on boot up.\n"); -system("chkconfig --add mysqld"); -system("chkconfig mysqld on"); -&writelog(`chkconfig --list mysqld`); +system("/sbin/chkconfig --add mysqld"); +system("/sbin/chkconfig mysqld on"); +&writelog(`/sbin/chkconfig --list mysqld`); writelog("mysql links created successfully\n"); writelog(`/etc/rc.d/init.d/mysqld start`); @@ -414,9 +414,9 @@ print_and_log("\n"); ## ## Remove the firewall. ## -system("chkconfig ipchains off"); +system("/sbin/chkconfig ipchains off"); system("/etc/init.d/ipchains stop"); -system("chkconfig iptables on"); +system("/sbin/chkconfig iptables on"); system("/etc/init.d/iptables start"); # Someday we will add these to /etc/sysconfig/ipchains. @@ -428,7 +428,7 @@ system("/etc/init.d/iptables start"); ## Set up httpd ## print_and_log("Setting httpd to start on boot up.\n"); -system("chkconfig httpd on"); +system("/sbin/chkconfig httpd on"); ## ## Copy our (probably lousy) httpd.conf to its rightful place