Mercurial > p > roundup > code
changeset 2474:591e3cfe622a
more detail
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 17 Jun 2004 05:47:56 +0000 |
| parents | 54a0869b92e4 |
| children | 3ab2b91cdd2c |
| files | doc/admin_guide.txt |
| diffstat | 1 files changed, 14 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/admin_guide.txt Wed Jun 16 13:29:38 2004 +0000 +++ b/doc/admin_guide.txt Thu Jun 17 05:47:56 2004 +0000 @@ -2,7 +2,7 @@ Administration Guide ==================== -:Version: $Revision: 1.7 $ +:Version: $Revision: 1.8 $ .. contents:: @@ -100,7 +100,10 @@ Always make a backup of your tracker before upgrading software. Steps you may take: -1. Ensure that the unit tests run on your system. +1. Ensure that the unit tests run on your system: + + python run_tests.py + 2. If you're using an RDBMS backend, make a backup of its contents now. 3. Copy your tracker home to a new directory. @@ -121,9 +124,17 @@ 1. Stop the production web and email frontends. 2. Perform the upgrade steps on the existing tracker directory. -3. Upgrade the software. +3. Upgrade the software:: + + python setup.py install + 4. Restart your tracker. +If something bad happens, you may reinstate your backup of the tracker and +reinstall the older version of the sofware using the same install command:: + + python setup.py install + Migrating Backends ------------------
