|
From: <di...@us...> - 2007-04-27 05:33:31
|
Revision: 492
http://safekeep.svn.sourceforge.net/safekeep/?rev=492&view=rev
Author: dimi
Date: 2007-04-26 22:33:23 -0700 (Thu, 26 Apr 2007)
Log Message:
-----------
New release: 0.9.3, new docs
Modified Paths:
--------------
website/trunk/WebContent/safekeep.backup.html
website/trunk/WebContent/safekeep.html
Modified: website/trunk/WebContent/safekeep.backup.html
===================================================================
--- website/trunk/WebContent/safekeep.backup.html 2007-04-27 05:06:35 UTC (rev 491)
+++ website/trunk/WebContent/safekeep.backup.html 2007-04-27 05:33:23 UTC (rev 492)
@@ -301,13 +301,14 @@
<!-- settings for database dump and for volume snapshot -->
<setup>
- <!-- database type ("postgres" or "mysql"), user with backup rights,
- location of the dump file on the client host, and flag to remove
- or not the dump file after the backup is done -->
+ <!-- database type ("postgres" or "mysql"), and database name,
+ DB user with backup rights, location of the dump file on the client
+ host, and flag to remove or not the dump file after the backup is done.
+ Databases can be dumped individualy using a dump clause for each database. -->
<dump
type="postgres"
db="dbname"
- user="foobar"
+ dbuser="foobar"
file="/var/backup/dumps/mydata"
cleanup="true"
/>
@@ -629,7 +630,7 @@
</div>
<div id="footer">
<div id="footer-text">
-Last updated 13-Mar-2007 16:21:29 EDT
+Last updated 27-Apr-2007 01:11:02 EDT
</div>
</div>
</body>
Modified: website/trunk/WebContent/safekeep.html
===================================================================
--- website/trunk/WebContent/safekeep.html 2007-04-27 05:06:35 UTC (rev 491)
+++ website/trunk/WebContent/safekeep.html 2007-04-27 05:33:23 UTC (rev 492)
@@ -455,7 +455,9 @@
<host name="my_workstation" />
<repo retention="10D" />
<setup>
- <dump type="postgres" user="postgres" file="/var/lib/pgsql/backups/all_dbs" />
+ <dump type="postgres" dbuser="postgres" file="/var/lib/pgsql/backups/all_dbs" />
+ <dump type="mysql" user="mysql" dbuser="dbbackup" db="adatabase" file="/var/backups/dumps/adatabase_dbs" />
+ <dump type="mysql" user="mysql" dbuser="dbbackup" db="mysql" file="/var/backups/dumps/mysql_dbs" cleanup="true" />
<snapshot device="/dev/mapper/VolGroup00-LogVol00" size="500M" />
</setup>
@@ -571,7 +573,7 @@
</div>
<div id="footer">
<div id="footer-text">
-Last updated 13-Mar-2007 16:21:28 EDT
+Last updated 27-Apr-2007 01:11:01 EDT
</div>
</div>
</body>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|