Index: trunk/backup/worker.py |
— | — | @@ -831,12 +831,14 @@ |
832 | 832 | # Clear prior 7zip attempts; 7zip will try to append an existing archive |
833 | 833 | if exists(xml7z): |
834 | 834 | os.remove(xml7z) |
835 | | - |
836 | | - command = "%s -dc < %s | %s a -si %s" % shellEscape(( |
| 835 | + |
| 836 | + # temp hack force 644 permissions until ubuntu bug # 370618 is fixed - tomasz 5/1/2009 |
| 837 | + command = "%s -dc < %s | %s a -si %s ; chmod 644 %s" % shellEscape(( |
837 | 838 | runner.config.bzip2, |
838 | 839 | xmlbz2, |
839 | 840 | runner.config.sevenzip, |
840 | | - xml7z)); |
| 841 | + xml7z, |
| 842 | + xml7z)); |
841 | 843 | return runner.runCommand(command, callback=self.progressCallback) |
842 | 844 | |
843 | 845 | def listFiles(self, runner): |
Index: trunk/backup/report.html |
— | — | @@ -67,7 +67,7 @@ |
68 | 68 | for documentation on the provided data formats. |
69 | 69 | </p> |
70 | 70 | |
71 | | - <p>See <a href="../../">all databases list</a>.</p> |
| 71 | + <p>See <a href="../../backup-index.html">all databases list</a>.</p> |
72 | 72 | |
73 | 73 | <p class="previous"> |
74 | 74 | %(previous)s |