Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-09 | rdiff,dup: fix include/exclude paths with spaces (Closes: #398435) | intrigeri | |
This also fixes Redmine bug #1021. | |||
2010-01-08 | ldap,mysql,pgsql: use bash pipefail option so that failed dumps are reported ↵ | intrigeri | |
as such This should fix Redmine bug #1340. This option makes pipelines return as status the value of the last (rightmost) command to exit with a non-zero status, or zero if all commands exit successfully. See bash(1) for details. E.g. this prevents the following from exiting with status 0 (!) if pg_dumpall fails: pg_dumpall | gzip | |||
2010-01-05 | Convert from debug to info so that it can be reported in the email | olivier | |
2010-01-05 | Add duplicity output line by line instead of with a whole at one time. ↵ | olivier | |
Should help fix #536360 | |||
2010-01-05 | Fix indentation of previously cherry-picked patch | intrigeri | |
2010-01-05 | Cherry-picked "fixes for mysql handler for mysqld inside a vserver" | intrigeri | |
This commit (64edfccf7684d9c080e734b25fa9361f0190afec) was wrongly committed to the debian branch. Conflicts: handlers/mysql.in | |||
2009-12-31 | dup.helper: do not propose to exclude /home/*/.gnupg twice anymore (Closes: ↵ | intrigeri | |
#563044) | |||
2009-12-25 | mysql, pgsql: Quote output filenames | intrigeri | |
... to support shell meta-characters in database names. Closes Redmine bug #617. | |||
2009-12-25 | rsync: added vim and Emacs modelines for consistency's sake | intrigeri | |
2009-12-02 | adjust the comparison operators in the rsync handler, fixes #1473 | Micah Anderson | |
2009-11-19 | ldap, mysql, pgsql: use gzip's --rsyncable option | intrigeri | |
2009-11-06 | Enhanced rsync handler. | Silvio Rhatto | |
- Added support for: - Remote destinations - Long rotation format similar to maildir handler - Batch files through --read-batch and --write-batch - Custom file list using --files-from - SSH persistent connection using ControlMaster - The rsync:// protocol - Metadata folder for each backup folder - General refactoring - Code cleanup Not all options were tested and it might contain bugs. Tests, comments and patches are welcome. :) | |||
2009-09-23 | Fix missing $ in variable name, fixes: #1239 | Micah Anderson | |
2009-07-18 | dup: fixed bandwidth vs desturl testing | intrigeri | |
2009-07-18 | dup: fixed bandwidthlimit test | intrigeri | |
Thanks to Ian Beckwith <ianb@erislabs.net> for the patch. | |||
2009-07-09 | added sshoptions variable to the maildir handler for arbitrary options that ↵ | Micah Anderson | |
you might need to pass updated the example.maildir to include this option, as well as detail the missing desid_file, destport | |||
2009-05-23 | Add a vim modeline with indentation settings. | Matthijs Kooijman | |
The modelines added match the emacs lines already present and also set the filetype to sh (just like the emacs lines). | |||
2009-05-23 | Make all indentation consistent. | Matthijs Kooijman | |
Previously, there were many indentation styles in use: Real tabs, 2, 3 or 4 spaces, mixing these within the same file, function or even within a single line. This commit changes all bash scripts in the handlers, src and lib dirs to use consistent indentation: three spaces are now used everywhere. Other files (e.g. Makefiles) are left untouched. Additionally, this commit removes all trailing whitespace. | |||
2009-01-22 | sys: backup dmsetup info as well, for easier restoring of Luks headers | intrigeri | |
2009-01-22 | sys: new lvm option to backup LVM metadata of every detected volume group | intrigeri | |
2009-01-22 | sys: new luksheaders option to backup the Luks header of every Luks device | intrigeri | |
2009-01-12 | mysql: fix 'mysqladmin ping' use, see changelog for details | intrigeri | |
2008-12-09 | mysql: new sqldumpoptions config variable (Closes: #502966) | intrigeri | |
2008-08-08 | fix location of deleted_on file and add missing destid_file options in ↵ | Micah Anderson | |
maildir handler | |||
2008-07-25 | update makecd handler to work with new toolset | Micah Anderson | |
2008-07-06 | . make maildir helper look in every subdirectory of the source ↵ | Micah Anderson | |
directory for maildirs, rather than just looking in the directories [a-zA-Z0-9], thanks for the patch from chris@cenolan.com (Trac#43) | |||
2008-06-29 | dup: added option --force to cleanup and remove-older-than commands, else ↵ | intrigeri | |
they actually do not do anything | |||
2008-06-29 | sys: explain how to fix the issue on "debconf-get-selections missing" error | intrigeri | |
2008-06-25 | dup: set secure permissions on tmpdir when creating it | intrigeri | |
2008-06-25 | sys: make debconf-get-selections detection on VServers really more robust | intrigeri | |
2008-06-25 | sys: fix catifexec invocations with arguments to prevent "line 191: [: too ↵ | intrigeri | |
many arguments" error messages | |||
2008-06-25 | sys: make error message clearer when debconf-get-selections can not be found ↵ | intrigeri | |
on the host | |||
2008-06-25 | sys: typo | intrigeri | |
2008-06-25 | sys: fixed debconf-get-selections search in VServers, especially in case it ↵ | intrigeri | |
is not available on the host | |||
2008-06-25 | sys: fix typo | intrigeri | |
2008-06-25 | stop failing on all the trac backups if just one fails | Micah Anderson | |
2008-06-24 | fix missing which that intrigeri saw | Micah Anderson | |
2008-06-24 | added more robust mdadm raid device capture, by actually scanning active ↵ | Micah Anderson | |
arrays via mdadm, rather than just catting the mdadm.conf file, which may be empty | |||
2008-06-24 | fixed catifexec function to actually work, also now takes arguments that are ↵ | Micah Anderson | |
passed, thanks to a report from John Hallam | |||
2008-06-24 | add the ability to save the debconf package selection states in the sys ↵ | Micah Anderson | |
handler, which aides in restoring installed packages with the right choices made | |||
2008-06-24 | sys: support selection of VServers to run on with the new vsnames ↵ | intrigeri | |
configuration option (Closes: Trac#45) | |||
2008-06-24 | pgsql, mysql, svn: use new vservers_running function from lib/vserver ↵ | intrigeri | |
(factorization++) | |||
2008-06-24 | lib/vserver: added vservers_running function, use it in sys handler (to ease ↵ | intrigeri | |
future fix for Trac#45) | |||
2008-06-24 | dup: actually allow to backup only VServers, by relaxing $include test | intrigeri | |
2008-06-24 | sys: update for 2.6 kernels: use /proc/kallsyms instead of /proc/ksyms ↵ | intrigeri | |
(Closes: Trac#39) | |||
2008-06-24 | pgsql: clarify error message when backupdir does not exist | intrigeri | |
2008-06-24 | dup: warn about bandwithlimit being unused when desturl is set | intrigeri | |
2008-06-24 | dup: support every duplicity-supported transport with new configuration ↵ | intrigeri | |
option desturl (Closes: #483712, #346040, Trac#2) | |||
2008-06-23 | LDAP helper: make error message clearer when no supported backend is found | intrigeri | |
2008-06-23 | LDAP: support HDB backend just as the BDB one | intrigeri | |