From 8f91b84fe099f3d4e7e142913b1b419719bbc2a3 Mon Sep 17 00:00:00 2001 From: slef Date: Wed, 9 Jul 2003 01:21:23 +0000 Subject: [PATCH] making sure that scripts are covered by 490 fix --- misc/Install.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/misc/Install.pm b/misc/Install.pm index 69530ce53c..a3f4cd6211 100644 --- a/misc/Install.pm +++ b/misc/Install.pm @@ -1578,6 +1578,7 @@ Which language do you choose? |; sub updatedatabase { # At this point, $etcdir/koha.conf must exist, for C4::Context $ENV{"KOHA_CONF"}=$etcdir.'/koha.conf.tmp'; + startsysout(); my $result=system ("perl -I $intranetdir/modules scripts/updater/updatedatabase"); if ($result) { restoremycnf(); @@ -1662,9 +1663,11 @@ sub populatedatabase { my $printerqueue='lp'; $printerqueue=showmessage(getmessage('PrinterQueue', [$printerqueue]), 'free', $printerqueue, 1); $printerqueue=~s/[^A-Za-z0-9]//g; + startsysout(); system("$mysqldir/bin/mysql -u$user $dbname -e \"insert into printers (printername,printqueue,printtype) values ('$printername', '$printerqueue', '')\""); # } my $language=showmessage(getmessage('Language'), 'free', 'en'); + startsysout(); system("$mysqldir/bin/mysql -u$user $dbname -e \"update systempreferences set value='$language' where variable='opaclanguages'\""); } } @@ -1701,7 +1704,7 @@ sub restartapache { if (-e "/etc/rc.d/init.d/httpd") { system('su root -c /etc/rc.d/init.d/httpd restart'); } elsif (-e "/etc/init.d/apache") { - system('su root -c /etc//init.d/apache restart'); + system('su root -c /etc/init.d/apache restart'); } elsif (-e "/etc/init.d/apache-ssl") { system('su root -c /etc/init.d/apache-ssl restart'); } -- 2.11.0