diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-02-09 19:23:56 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-02-09 19:23:56 +0000 |
commit | 6212621585a24c0e625826337ecd6af41b0a9914 (patch) | |
tree | 6adc3bf0eeeb5b2545fef3d996027d8d6526beb3 | |
parent | 61851bc95c6e1a228e5b54504907955580d529c6 (diff) |
Updating UPGRADE docs and making sl2ls.sh script safe for many installation directories.
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@807 4979c152-3d1c-0410-bac9-87ea11338e46
-rw-r--r-- | UPGRADE | 6 | ||||
-rw-r--r-- | sl2ls.sh | 9 |
2 files changed, 12 insertions, 3 deletions
@@ -13,6 +13,10 @@ Also this document assumes that the reader is already familiar with the release notes. If you have not already done so, please read the release_notes file in the doc/ directory. +Before you begin, make sure that you are running at least PostgreSQL 8.0. If +you are running a prior version, you will need to dump your data, upgrade the +database server and restore the data before proceeding. + MANUAL UPGRADE: =============================================================================== @@ -78,6 +82,8 @@ sql/Pg-central.sql file into it. 7) Copy the files from the LedgerSMB tarball over your existing installation. 8) Delete the users directory. +9) Edit the ledger-smb.conf file as appropriate. + Congratulations, you have manually upgraded to LedgerSMB 1.2. TODO: Add upgrade.pl script and automate the above process. @@ -12,6 +12,9 @@ SLOWN=SQL-Ledger_Owner LSDB=lsmbprod
LSOWN=ledgersmb
+# Installation directory
+
+IDIR=`pwd`
psql template1 -c "DROP DATABASE ${LSDB};"
@@ -22,7 +25,7 @@ sed -i -e "s/SQL_ASCII/LATIN1/" sl2ls.sql createdb -O ${LSOWN} ${LSDB}
-psql ${LSDB} ${LSOWN} -c "\i /usr/local/ledger-smb/sql/Pg-central.sql"
+psql ${LSDB} ${LSOWN} -c "\i ${IDIR}/sql/Pg-central.sql"
psql template1 -c "ALTER USER ${LSOWN} WITH superuser;"
@@ -30,7 +33,7 @@ psql ${LSDB} ${LSOWN} -c "\i sl2ls.sql" psql template1 -c "ALTER USER ${LSOWN} WITH nosuperuser;"
-cd /usr/local/ledger-smb/sql/legacy/
+cd ${IDIR}/sql/legacy/
psql ${LSDB} ${LSOWN} -c "SELECT version FROM defaults;"
@@ -54,7 +57,7 @@ psql ${LSDB} ${LSOWN} -c "SELECT version FROM defaults;" psql ${LSDB} ${LSOWN} -c "update users_conf set password = md5('apasswrd');"
-cd /usr/local/ledger-smb
+cd ${IDIR}
./import_members.pl users/members
|