The branch, develop has been updated
Old revision: 1b969d5ca1cff59a8eb7079751ef12806e7a1557, new revision: 52a1f46832d9b517fe4b55e39e3b7eea56fdbf68.
via 52a1f46832d9b517fe4b55e39e3b7eea56fdbf68 (commit)
via 4da6acfce7663a0b93a7e450811488814844d6f9 (commit)
from 1b969d5ca1cff59a8eb7079751ef12806e7a1557 (commit)
- Log -----------------------------------------------------------------
commit 52a1f46832d9b517fe4b55e39e3b7eea56fdbf68
Merge: 1b969d5 4da6acf
Author: Chance Zibolski <
chance....@gmail.com>
Date: Mon Dec 16 12:43:11 2013 -0800
Merge branch 'bug/15345' into develop
* bug/15345:
Docs: Update initial sync/migration docs.
Summary of changes:
docs/source/deprecated/old_installing.rst | 22 +++++++---------------
1 files changed, 7 insertions(+), 15 deletions(-)
diff --git a/docs/source/deprecated/old_installing.rst b/docs/source/deprecated/old_installing.rst
index c1f75a5..ec7efe2 100644
--- a/docs/source/deprecated/old_installing.rst
+++ b/docs/source/deprecated/old_installing.rst
@@ -95,31 +95,23 @@ Initializing
#. Initialize Database:
- MySQL/SQLite:
-
- ::
+ **Existing** Database::
# Create new tables and migrate all apps using southdb
./manage.py syncdb --migrate
- Postgres:
-
- .. Note:: This assumes your doing a fresh install of |gwm| on a new Postgres database.
-
- ::
+ **New** Database::
./manage.py syncdb --all
./manage.py migrate --fake
-#. Build the search indexes
-
- ::
+#. Build the search indexes::
- ./manage.py rebuild_index
+ ./manage.py rebuild_index
- .. Note:: Running **./manage.py update\_index** on a regular basis
- ensures that the search indexes stay up-to-date when models change in
- Ganeti Web Manager.
+ .. Note:: Running **./manage.py update\_index** on a regular basis
+ ensures that the search indexes stay up-to-date when models change in
+ Ganeti Web Manager.
Next Steps
----------