From ba802623a8ffdeb8e4a4753dea42b57038fabb16 Mon Sep 17 00:00:00 2001 From: dragon28 Date: Fri, 10 May 2002 11:09:00 +0000 Subject: [PATCH] Fixed a couple of typos. --- installer.pl | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/installer.pl b/installer.pl index 5944ea88ae..733649a21f 100644 --- a/installer.pl +++ b/installer.pl @@ -40,6 +40,8 @@ EOM exit; }; +print "\n"; +print "Unpack the tarball - still to be done.\n"; # # Hmm, on further thought, this file came out of the tarball ... so # is it likely to be untarred again? @@ -86,6 +88,8 @@ if (@missing > 0) { }; +print "\n"; +print "Testing for mysql - still to be done\n"; #test for MySQL? #print "Are you using MySql?(Y/[N]): "; #$answer = $_; @@ -127,10 +131,17 @@ Checking to see if koha.conf already exists... EOM # Check to see if the koha.conf file exists. +# and what its contents may be. +# +# my($file) = "/etc/koha.conf"; my($content); -open(FILE, "<$file") or die "cannot open $file for reading : $!"; +open(FILE, "<", "$file") or die "cannot open $file for reading : $!"; $content = ; +print "\n"; +print "Contents of koha.conf ...\n"; +print $content; +print ; close (FILE); @@ -178,4 +189,4 @@ close (FILE); # # It is competed # -print "\nCongratulations ... you Koha installation is complete!\n"; \ No newline at end of file +print "\nCongratulations ... your Koha installation is complete!\n"; \ No newline at end of file -- 2.39.5