[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb: [573] trunk
- Subject: SF.net SVN: ledger-smb: [573] trunk
- From: ..hidden..
- Date: Mon, 13 Nov 2006 19:25:57 -0800
Revision: 573
http://svn.sourceforge.net/ledger-smb/?rev=573&view=rev
Author: einhverfr
Date: 2006-11-13 19:25:55 -0800 (Mon, 13 Nov 2006)
Log Message:
-----------
Applying Mads' fixes
Modified Paths:
--------------
trunk/CONTRIBUTORS
trunk/INSTALL
trunk/dists/rpm/ledgersmb.spec
trunk/ledger-smb-httpd.conf
trunk/locale/po/da.po
Modified: trunk/CONTRIBUTORS
===================================================================
--- trunk/CONTRIBUTORS 2006-11-14 03:14:18 UTC (rev 572)
+++ trunk/CONTRIBUTORS 2006-11-14 03:25:55 UTC (rev 573)
@@ -36,8 +36,8 @@
Christopher Browne <cbrowne @ acm.org> provided some corrections to the
documentation, the Pg-tables.sql, and a setup file for replication.
-Mads Kiilerich <mads @ kiilerich.com> provided the first version of the RPM
-spec file.
+Mads Kiilerich <mads @ kiilerich.com> has provided the RPM spec file and
+numerous bug fixes.
Tony Fraser <tony @ sybaspace.com> provided some database fixes.
Modified: trunk/INSTALL
===================================================================
--- trunk/INSTALL 2006-11-14 03:14:18 UTC (rev 572)
+++ trunk/INSTALL 2006-11-14 03:25:55 UTC (rev 573)
@@ -1,27 +1,27 @@
Installing LedgerSMB 1.2
-This document contains information on how to upgrade from earlier versions of
-LedgerSMB or SQL-Ledger. This upgrade is a major revision and may not go
-smoothly. We recommend that the reader start by reading the section on manual
-installation and then start by trying the automated means mentioned later.
+This document contains information on how to install LedgerSMB. We recommend
+that the reader start by reading the section on manual installation and then
+start by trying the automated means mentioned later.
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.
-MANUAL UPGRADE:
+MANUAL INSTALL:
===============================================================================
1) Untar in desired location.
-2) Check New Dependencies
+2) Check Dependencies
The Build.PL script can be used to test for unmet dependencies and run other
tests. It doesn't install anything yet, but it will tell you what you are
missing. To check for dependencies, run "perl Build.PL" from the command line.
Missing dependencies can generally be installed via a Linux distributor's
-package manager or by CPAN.
+package manager or by CPAN. (Build.PL itself uses Module::Build, which is
+available in packages like perl-Module-Build or libmodule-build-perl.)
Once this is done and dependencies are satisfied, you can check to see whether
the installation nominally works by running "./Build test" from the command
@@ -33,29 +33,18 @@
* Net::TCLink for credit card processing in a POS environment
* Parse::RecDescent for the CLI script host
-3) Install database
-
- a) cd to the sql/legacy/ directory of the new ledger directory
- b) run "psql" with appropriate options to connect to your database.
- c) Note the db version by running the following query:
- "SELECT version FROM defaults;"
- d) Run the SQL upgrade scripts in order starting with the one whose name
- begins with "Pg-database" (each of these scripts will upgrade to
- the next database version which is also identified in the file name).
-
-Note that this will create three tables that may not actually be used depending
-on your setup: users, users_conf, and session. In general if you have multiple
-datasets, these tables will only be used in one.
-
-4) Decide where to put the user/session management tables. In general, we
+3) Decide where to put the user/session management tables. In general, we
recommend as follows:
a) Single dataset installations should use the user tables in the dataset.
b) Multicompany installations should use user tables in a separate dataset
from any accounting data.
-If you need to create another dataset, you can create the db and import the
-sql/Pg-central.sql file into it.
+4) Create central database
+ a) cd to the sql/ directory of the new ledger directory.
+ b) run "psql" with appropriate options to connect to your database.
+ c) Run the SQL script Pg-central.sql.
+
5) Set the admin password:
a) From psql, determine what admin password you wish to use. Then type:
"update users_conf set password = md5('my_password');"
Modified: trunk/dists/rpm/ledgersmb.spec
===================================================================
--- trunk/dists/rpm/ledgersmb.spec 2006-11-14 03:14:18 UTC (rev 572)
+++ trunk/dists/rpm/ledgersmb.spec 2006-11-14 03:25:55 UTC (rev 573)
@@ -28,15 +28,18 @@
To finalize the ledger-smb installation:
-Start the PostgreSQL service, let /var/lib/pgsql/data/pg_hba.conf start with:
+Enable local password autentication in PosgreSQL, leaving ident login for the
+postgres user:
+- Start PostgreSQL to create database instance (service postgres start)
+- Let /var/lib/pgsql/data/pg_hba.conf start with:
local all postgres ident sameuser
local all all md5
host all all 127.0.0.1/32 md5
-(Remember to restart PostgreSQL.)
+- Restart PostgreSQL to apply changes (service postgres restart)
In %{_sysconfdir}/%{name}/ledger-smb.conf set DBPassword to something
and create the ledgersmb master user and database:
-su - postgres -c "createuser -d ledgersmb --createdb --createrole --superuser -P"
+su - postgres -c "createuser -d ledgersmb --createdb --superuser -P"
su - postgres -c "createdb ledgersmb"
su - postgres -c "createlang plpgsql ledgersmb"
su - postgres -c "psql ledgersmb < %{_datadir}/%{name}/sql/Pg-central.sql"
@@ -89,44 +92,44 @@
# the conf, placed in etc, symlinked back in place
mv ledger-smb.conf.default $RPM_BUILD_ROOT%{_sysconfdir}/ledger-smb/ledger-smb.conf
ln -s ../../..%{_sysconfdir}/ledger-smb/ledger-smb.conf \
- $RPM_BUILD_ROOT%{_datadir}/%{name}/ledger-smb.conf
+ $RPM_BUILD_ROOT%{_datadir}/%{name}/ledger-smb.conf
# install relevant parts in data/cgi directory
-cp -rp *.pl favicon.ico index.html ledger-smb.gif ledger-smb.png ledger-smb_small.png menu.ini \
- bin LedgerSMB sql utils locale drivers \
- Config Class Locale \
- $RPM_BUILD_ROOT%{_datadir}/%{name}/
+cp -rp *.pl favicon.ico index.html ledger-smb.eps ledger-smb.gif ledger-smb.png ledger-smb_small.png menu.ini \
+ bin LedgerSMB sql utils locale drivers \
+ Config Class Locale \
+ $RPM_BUILD_ROOT%{_datadir}/%{name}/
rm $RPM_BUILD_ROOT%{_datadir}/%{name}/{setup.pl,SL2LS.pl} # FIXME - install somewhere else...
rm -rf $RPM_BUILD_ROOT%{_datadir}/%{name}/locale/legacy
# users - written to by cgi
mkdir -p -m0750 $RPM_BUILD_ROOT%{_localstatedir}/lib/%{name}/users
ln -s ../../..%{_localstatedir}/lib/%{name}/users \
- $RPM_BUILD_ROOT%{_datadir}/%{name}/users
+ $RPM_BUILD_ROOT%{_datadir}/%{name}/users
# css - written to by cgi
mkdir -p -m0750 $RPM_BUILD_ROOT%{_localstatedir}/lib/%{name}/css
ln -s ../../..%{_localstatedir}/lib/%{name}/css \
- $RPM_BUILD_ROOT%{_datadir}/%{name}/css
+ $RPM_BUILD_ROOT%{_datadir}/%{name}/css
cp -rp css/* \
- $RPM_BUILD_ROOT%{_datadir}/%{name}/css
+ $RPM_BUILD_ROOT%{_datadir}/%{name}/css
# templates - written to by cgi
mkdir -p -m0750 $RPM_BUILD_ROOT%{_localstatedir}/lib/%{name}/templates
ln -s ../../..%{_localstatedir}/lib/%{name}/templates \
- $RPM_BUILD_ROOT%{_datadir}/%{name}/templates
+ $RPM_BUILD_ROOT%{_datadir}/%{name}/templates
cp -rp templates/* \
- $RPM_BUILD_ROOT%{_datadir}/%{name}/templates
+ $RPM_BUILD_ROOT%{_datadir}/%{name}/templates
# spool - written to by cgi
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/spool/%{name}
ln -s ../../..%{_localstatedir}/spool/%{name} \
- $RPM_BUILD_ROOT%{_datadir}/%{name}/spool
+ $RPM_BUILD_ROOT%{_datadir}/%{name}/spool
# apache config file
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf.d
install -m 644 rpm-ledger-smb-httpd.conf \
- $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf.d/ledger-smb.conf
+ $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf.d/ledger-smb.conf
%clean
@@ -146,15 +149,13 @@
%config(noreplace) %{_sysconfdir}/httpd/conf.d/*.conf
-%doc doc/{COPYRIGHT,LedgerSMB-manual.pdf,README,faq.html,release_notes}
-%doc LICENSE README.sql-ledger README.translations TODO Changelog CONTRIBUTORS
+%doc doc/{COPYRIGHT,faq.html,LedgerSMB-manual.pdf,README,release_notes}
+%doc BUGS Changelog CONTRIBUTORS INSTALL LICENSE README.sql-ledger README.translations TODO UPGRADE
%changelog
-* Fri Nov 10 2006 Mads Kiilerich <..hidden..> - 1.2 alpha
+* Fri Nov 10 2006 Mads Kiilerich <..hidden..> - 1.2-alpha
- Updating towards 1.2
* Wed Oct 18 2006 Mads Kiilerich <..hidden..> - 1.1.1d-1
- Initial version
-
-
Modified: trunk/ledger-smb-httpd.conf
===================================================================
--- trunk/ledger-smb-httpd.conf 2006-11-14 03:14:18 UTC (rev 572)
+++ trunk/ledger-smb-httpd.conf 2006-11-14 03:25:55 UTC (rev 573)
@@ -23,6 +23,11 @@
Deny from All
</Directory>
+<Directory /some/path/to/ledger-smb/utils>
+ Order Deny,Allow
+ Deny from All
+</Directory>
+
<Directory /some/path/to/ledger-smb/spool>
Order Deny,Allow
Deny from All
Modified: trunk/locale/po/da.po
===================================================================
--- trunk/locale/po/da.po 2006-11-14 03:14:18 UTC (rev 572)
+++ trunk/locale/po/da.po 2006-11-14 03:25:55 UTC (rev 573)
@@ -342,7 +342,7 @@
msgstr "BOM"
msgid "Backup"
-msgstr "Sikkerheskopi"
+msgstr "Sikkerhedskopi"
msgid "Backup sent to"
msgstr "Sikkerhedskopier sendt til"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.