<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/des3bashwebsite/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/des3bashwebsite/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Mon, 13 Apr 2009 18:46:38 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/des3bashwebsite/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>Database Compression</title><link>https://sourceforge.net/p/des3bashwebsite/bugs/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;This code seems to be incorrect as well:&lt;/p&gt;
&lt;p&gt;for database in $databases&lt;br /&gt;
do&lt;br /&gt;
rm -f ${backupdir}/${DOW}-${database}.sql.gz&lt;br /&gt;
rm -f ${backupdir}/sql/${DOW}-${database}.sql.gz&lt;br /&gt;
$gzip ${backupdir}/${DOW}-${database}.sql&lt;br /&gt;
done&lt;/p&gt;
&lt;p&gt;Should read this:&lt;/p&gt;
&lt;p&gt;for database in $databases&lt;br /&gt;
do&lt;br /&gt;
rm -f ${backupdir}/${DOW}-${database}.sql.gz #not even sure what this is supposed to do since no db files are created here&lt;br /&gt;
rm -f ${backupdir}/sql/${DOW}-${database}.sql.gz&lt;br /&gt;
gzip ${backupdir}/sql/${DOW}-${database}.sql&lt;br /&gt;
done&lt;/p&gt;
&lt;p&gt;Without this change, nothing is really being accomplished.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Matthew Barker</dc:creator><pubDate>Mon, 13 Apr 2009 18:46:38 -0000</pubDate><guid>https://sourceforge.netde4d42f64361741e8c10eec06b3b97fb35361492</guid></item><item><title>Backing up multiple databases</title><link>https://sourceforge.net/p/des3bashwebsite/bugs/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;There appears to be an error in the code on line 31. It reads this:&lt;/p&gt;
&lt;p&gt;$mysqldumpcmd $userpassword $dumpoptions $databases &amp;gt; ${backupdir}/sql/${DOW}-${database}.sql&lt;/p&gt;
&lt;p&gt;It should read this:&lt;/p&gt;
&lt;p&gt;$mysqldumpcmd $userpassword $dumpoptions $database &amp;gt; ${backupdir}/sql/${DOW}-${database}.sql&lt;/p&gt;
&lt;p&gt;The key is $database instead of $databases before the dump.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Matthew Barker</dc:creator><pubDate>Mon, 13 Apr 2009 18:38:26 -0000</pubDate><guid>https://sourceforge.net83e47ab72162dc04c4e9a3a05231c42b3bf0b705</guid></item></channel></rss>