I've stumbled over some small typos in the installation script and
slightly updated the READMEs. Attached please find a patch for these
changes. Thanks!
Bye,
LenZ
--
Lenz Grimmer <le...@grimmer.com> - http://www.lenzg.net/
Index: INSTALL.txt
===================================================================
--- INSTALL.txt (revision 72)
+++ INSTALL.txt (working copy)
@@ -5,10 +5,13 @@
===== INSTALL FROM A TARBALL
download securich_install.tar from http://www.securich.com/ downloads section
tar -xf securich_install.tar
- chmod 700 securich_install.sh
- ./install.sh
+ cd securich_install
+ chmod +x securich_install.sh
+ ./securich_install.sh
- follow the instructions and decide weather you'd like to install the latest version of securich, upgrade your current installation or just install the securich tar.gz package you currently have.
+ follow the instructions and decide whether you'd like to install the
+ latest version of securich, upgrade your current installation or just
+ install the securich tar.gz package you currently have.
### you need to have the following in the PATH:
### mysql, wget, gunzip, tar
Index: securich_install/securich_install.sh
===================================================================
--- securich_install/securich_install.sh (revision 72)
+++ securich_install/securich_install.sh (working copy)
@@ -134,7 +134,7 @@
fi
echo ""
- echo -n "Enter version number (defualt $LV i.e. latest version): "
+ echo -n "Enter version number (default $LV i.e. latest version): "
read -e VN ## VN = Version Number
if [ "$VN" == "" ]
then
@@ -151,7 +151,7 @@
if [ $CVN == 0 ]
then
echo ""
- echo -n "Wrong value, please re-enter version number (defualt $LV i.e. latest version): "
+ echo -n "Wrong value, please re-enter version number (default $LV i.e. latest version): "
read -e VN
if [ "$VN" == "" ]
then
@@ -176,7 +176,7 @@
while [ "$TOI" -lt "1" ] && [ "$TOI" -gt "2" ]
do
- echo -n "Wrong value, please re-enter choice (defualt 2 i.e. Download and install): "
+ echo -n "Wrong value, please re-enter choice (default 2 i.e. Download and install): "
read -e TOI
if [ "$TOI" == "" ]
then
@@ -282,7 +282,7 @@
while [ "$FOU" -lt "1" ] && [ "$FOU" -gt "2" ]
do
- echo -n "Wrong value, please re-enter choice (defualt 1 i.e. fresh installation): "
+ echo -n "Wrong value, please re-enter choice (default 1 i.e. fresh installation): "
read -e FOU
if [ "$FOU" == "" ]
then
@@ -308,7 +308,7 @@
while [ "$IM" -lt "1" ] && [ "$IM" -gt "2" ]
do
- echo -n "Wrong value, please re-enter choice (defualt 1 i.e. Import grants from MySQL to Securich): "
+ echo -n "Wrong value, please re-enter choice (default 1 i.e. Import grants from MySQL to Securich): "
read -e IM
if [ "$IM" == "" ]
then
@@ -345,7 +345,7 @@
while [ "$CH" -lt "1" ] && [ "$CH" -gt "2" ]
do
- echo -n "Wrong value, please re-enter choice (defualt 1 i.e. TCP/IP): "
+ echo -n "Wrong value, please re-enter choice (default 1 i.e. TCP/IP): "
read -e CH
if [ "$CH" == "" ]
then
Index: securich_install/README.txt
===================================================================
--- securich_install/README.txt (revision 72)
+++ securich_install/README.txt (working copy)
@@ -1,22 +1,22 @@
Baby proof install script readme:
+*********************************************************************
+**** Make sure you have mysql, wget, gunzip and tar in your PATH ****
+*********************************************************************
+
tar -xf securich_install.tar
-chmod 700 securich_install.sh
+cd securich_install
+chmod +x securich_install.sh
+./securich_install.sh
Steps involved
1. enter version number when enquired "obtainable from http://www.securich.com/downloads.html or http://code.google.com/p/securich/downloads/list"
2. choose from install from file or download and install (recommended)
3. choose fresh install or upgrade
-4. choose weather you'd like to import uses and accesses to securich from mysql or just start from a clean slate
+4. choose whether you'd like to import users and privileges to securich from mysql or just start from a clean state
5. enter mysql root password when prompted
-6. choose weather to connect using the socket or over tcp
+6. choose whether to connect using a local socket file or via tcp
7. enter mysql hostname and port OR socket when prompted
-
-
-*********************************************************************
-**** Make sure you have mysql, wget, gunzip and tar in your PATH ****
-*********************************************************************
-
enjoy!