[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] CVS: koha installer.pl,1.2.2.3,1.2.2.4
From: |
Mike Mylonas |
Subject: |
[Koha-cvs] CVS: koha installer.pl,1.2.2.3,1.2.2.4 |
Date: |
Fri, 10 May 2002 04:09:03 -0700 |
Update of /cvsroot/koha/koha
In directory usw-pr-cvs1:/tmp/cvs-serv20436/koha
Modified Files:
Tag: rel-1-2
installer.pl
Log Message:
Fixed a couple of typos.
Index: installer.pl
===================================================================
RCS file: /cvsroot/koha/koha/installer.pl,v
retrieving revision 1.2.2.3
retrieving revision 1.2.2.4
diff -C2 -r1.2.2.3 -r1.2.2.4
*** installer.pl 10 May 2002 08:50:17 -0000 1.2.2.3
--- installer.pl 10 May 2002 11:09:00 -0000 1.2.2.4
***************
*** 41,44 ****
--- 41,46 ----
};
+ print "\n";
+ print "Unpack the tarball - still to be done.\n";
#
# Hmm, on further thought, this file came out of the tarball ... so
***************
*** 87,90 ****
--- 89,94 ----
+ print "\n";
+ print "Testing for mysql - still to be done\n";
#test for MySQL?
#print "Are you using MySql?(Y/[N]): ";
***************
*** 128,135 ****
# Check to see if the koha.conf file exists.
my($file) = "/etc/koha.conf";
my($content);
! open(FILE, "<$file") or die "cannot open $file for reading : $!";
$content = <FILE>;
close (FILE);
--- 132,146 ----
# 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 : $!";
$content = <FILE>;
+ print "\n";
+ print "Contents of koha.conf ...\n";
+ print $content;
+ print <FILE>;
close (FILE);
***************
*** 179,181 ****
# It is competed
#
! print "\nCongratulations ... you Koha installation is complete!\n";
\ No newline at end of file
--- 190,192 ----
# It is competed
#
! print "\nCongratulations ... your Koha installation is complete!\n";
\ No newline at end of file
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] CVS: koha installer.pl,1.2.2.3,1.2.2.4,
Mike Mylonas <=