matthijs/upstream/backupninja-vserver.git
15 years agomysql: No longer prepend vroot to the backupdir. matthijs
Matthijs Kooijman [Thu, 22 Jan 2009 20:54:16 +0000 (21:54 +0100)]
mysql: No longer prepend vroot to the backupdir.

Prepending the vroot can still be done manually by starting the
backupdir config variable with %v. For backwards compatibility,
prepending %v is done automatically when vsname is used (instead of
vsnames). This requires the vsname -> vsnames change and this change to
be released at the same time.

15 years agoAdd strip_prefix function.
Matthijs Kooijman [Wed, 7 Jan 2009 21:16:24 +0000 (22:16 +0100)]
Add strip_prefix function.

This function can be used to remove a given prefix from a string.

15 years agoAdd starts_with function.
Matthijs Kooijman [Wed, 7 Jan 2009 20:56:18 +0000 (21:56 +0100)]
Add starts_with function.

This function compares two strings (paths) and checks if the first
starts with the second (the first path lies within the second).

15 years agomysql: Support multiple vservers.
Matthijs Kooijman [Mon, 5 Jan 2009 16:36:03 +0000 (17:36 +0100)]
mysql: Support multiple vservers.

This adds the vsnames configuration variable, while still supporting the
vsname variable (with a warning).

15 years agoldap: Run on host when vsnames is empty.
Matthijs Kooijman [Mon, 5 Jan 2009 16:08:33 +0000 (17:08 +0100)]
ldap: Run on host when vsnames is empty.

15 years agoldap: Check if a vserver is running.
Matthijs Kooijman [Mon, 5 Jan 2009 16:06:29 +0000 (17:06 +0100)]
ldap: Check if a vserver is running.

15 years agomysql: Put most of the code into a function.
Matthijs Kooijman [Mon, 5 Jan 2009 15:33:17 +0000 (16:33 +0100)]
mysql: Put most of the code into a function.

This prepares for calling the function multiple times for multiple
vservers. Since this increases the indentation of most of the file
anyway, I'm also making the indentation of the file internally
consistent as well.

15 years agoldap: Use quotes in more places.
Matthijs Kooijman [Mon, 5 Jan 2009 15:49:01 +0000 (16:49 +0100)]
ldap: Use quotes in more places.

This is more robust and allows spaces in more places (in particular in
backupd_dir and theoretically in vserver names).

15 years agoldap: Add the (optional) function keyword.
Matthijs Kooijman [Mon, 5 Jan 2009 15:16:30 +0000 (16:16 +0100)]
ldap: Add the (optional) function keyword.

This makes the function definition a bit clearer.

15 years agomysql: Interpolate the backupdir config variable.
Matthijs Kooijman [Mon, 5 Jan 2009 15:14:55 +0000 (16:14 +0100)]
mysql: Interpolate the backupdir config variable.

15 years agomysql: Create directories on the host.
Matthijs Kooijman [Mon, 5 Jan 2009 15:11:23 +0000 (16:11 +0100)]
mysql: Create directories on the host.

The previous commit broke the directory creation: It was prefixed with
$vroot and also executed inside the vserver.

15 years agomysql: Clean up vserver handling a bit.
Matthijs Kooijman [Thu, 1 Jan 2009 20:08:09 +0000 (21:08 +0100)]
mysql: Clean up vserver handling a bit.

Use the same trick the ldap handler uses: Have two vars $vexec and
$vdir, which are empty when running on the host and filled when running
on a vserver. By prepending these vars at the right places, all of the
explicit "if [ $use_vserver = yes ]" could be removed.

15 years agomysql: pass options consistently when listing databases.
Matthijs Kooijman [Thu, 1 Jan 2009 19:46:01 +0000 (20:46 +0100)]
mysql: pass options consistently when listing databases.

r495 improved the database listing command, but only did this for the
non-vserver case. This corrects that.

15 years agomysql: Pass -h $dbhost to mysqlhotcopy consistently.
Matthijs Kooijman [Thu, 1 Jan 2009 19:07:35 +0000 (20:07 +0100)]
mysql: Pass -h $dbhost to mysqlhotcopy consistently.

r281 introduced the -h $dbhost option, but only when dumping all
databases in a vserver. This change also uses -h when running
mysqlhotcopy on the host and on individual databases.

15 years agomysql: Properly set the path to .my.conf when vservers are used.
Matthijs Kooijman [Thu, 1 Jan 2009 18:56:12 +0000 (19:56 +0100)]
mysql: Properly set the path to .my.conf when vservers are used.

This fixes the case when the user option and the vsname option are both
used.

15 years agoldap: Interpolate the backupdir config variable.
Matthijs Kooijman [Thu, 1 Jan 2009 14:20:50 +0000 (15:20 +0100)]
ldap: Interpolate the backupdir config variable.

15 years agotools: Add a interpolate function that can interpolate % variables into a path.
Matthijs Kooijman [Thu, 1 Jan 2009 14:02:23 +0000 (15:02 +0100)]
tools: Add a interpolate function that can interpolate % variables into a path.

This allows handlers to turn a single path configuration variable into
different paths, based on the vserver used.

15 years agomysql: Warn when vsname is set but vserver support is disabled in backupninja.conf.
Matthijs Kooijman [Thu, 1 Jan 2009 12:42:07 +0000 (13:42 +0100)]
mysql: Warn when vsname is set but vserver support is disabled in backupninja.conf.

15 years agosys: Warn when vsnames is set but vserver support is disabled in backupninja.conf.
Matthijs Kooijman [Thu, 1 Jan 2009 12:40:42 +0000 (13:40 +0100)]
sys: Warn when vsnames is set but vserver support is disabled in backupninja.conf.

15 years agoldap: Add a warning when using restart with the ldapsearch method.
Matthijs Kooijman [Thu, 1 Jan 2009 12:38:07 +0000 (13:38 +0100)]
ldap: Add a warning when using restart with the ldapsearch method.

15 years agoldap: Add support for vservers.
Matthijs Kooijman [Thu, 1 Jan 2009 12:05:34 +0000 (13:05 +0100)]
ldap: Add support for vservers.

This adds the vsnames configuration directive, which backups ldap data
from within the specified vservers. The backupdir is still external to
the vserver (ie, it isn't prefixed with the vserver's root dir). This
means that currently backups from multiple vservers will overwrite each
other, but I plan to correct that with another new feature.

15 years agomysql: new sqldumpoptions config variable (Closes: #502966)
intrigeri [Tue, 9 Dec 2008 11:40:03 +0000 (11:40 +0000)]
mysql: new sqldumpoptions config variable (Closes: #502966)

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@629 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agobackupninja: do not assume English locale when using date (Closes: #465837)
intrigeri [Tue, 9 Dec 2008 11:08:53 +0000 (11:08 +0000)]
backupninja: do not assume English locale when using date (Closes: #465837)

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@628 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agoFAQ: new file, with first Q/A for duplicity vs. sudo related issues
intrigeri [Tue, 9 Dec 2008 10:56:15 +0000 (10:56 +0000)]
FAQ: new file, with first Q/A for duplicity vs. sudo related issues

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@627 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agofix location of deleted_on file and add missing destid_file options in maildir handler
micah [Fri, 8 Aug 2008 04:50:55 +0000 (04:50 +0000)]
fix location of deleted_on file and add missing destid_file options in maildir handler

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@619 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agofix reportspace
intrigeri [Mon, 28 Jul 2008 17:12:31 +0000 (17:12 +0000)]
fix reportspace

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@618 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agoupdate makecd handler to work with new toolset
micah [Fri, 25 Jul 2008 20:11:24 +0000 (20:11 +0000)]
update makecd handler to work with new toolset

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@613 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agoprepare for release
micah [Mon, 21 Jul 2008 20:49:34 +0000 (20:49 +0000)]
prepare for release

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@598 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agoclarify how the nodata option should be specified in the config file for mysql
micah [Sun, 6 Jul 2008 17:58:52 +0000 (17:58 +0000)]
clarify how the nodata option should be specified in the config file for mysql

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@597 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agofix language to make sense
micah [Sun, 6 Jul 2008 17:21:57 +0000 (17:21 +0000)]
fix language to make sense

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@596 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years ago . make maildir helper look in every subdirectory of the source directory for
micah [Sun, 6 Jul 2008 16:05:14 +0000 (16:05 +0000)]
     . make maildir helper look in every subdirectory of the source directory for
           maildirs, rather than just looking in the directories [a-zA-Z0-9], thanks
           for the patch from chris@cenolan.com (Trac#43)

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@595 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agodup: added option --force to cleanup and remove-older-than commands, else they actual...
intrigeri [Sun, 29 Jun 2008 07:26:36 +0000 (07:26 +0000)]
dup: added option --force to cleanup and remove-older-than commands, else they actually do not do anything

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@594 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agosys: explain how to fix the issue on "debconf-get-selections missing" error
intrigeri [Sun, 29 Jun 2008 07:01:29 +0000 (07:01 +0000)]
sys: explain how to fix the issue on "debconf-get-selections missing" error

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@593 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agodup: set secure permissions on tmpdir when creating it
intrigeri [Wed, 25 Jun 2008 09:54:45 +0000 (09:54 +0000)]
dup: set secure permissions on tmpdir when creating it

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@592 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agoautotools: remove requirement on md5sum, which is not used anymore
intrigeri [Wed, 25 Jun 2008 09:42:23 +0000 (09:42 +0000)]
autotools: remove requirement on md5sum, which is not used anymore

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@591 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agolib/tools.in(maketemp): really remove insecure fall-back if mktemp is missing, since...
intrigeri [Wed, 25 Jun 2008 09:40:13 +0000 (09:40 +0000)]
lib/tools.in(maketemp): really remove insecure fall-back if mktemp is missing, since it is now required at build-time

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@590 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agolib/Makefile.am: fix CLEANFILES, add substitution for MKTEMP, else ninjahelper crashes
intrigeri [Wed, 25 Jun 2008 09:33:35 +0000 (09:33 +0000)]
lib/Makefile.am: fix CLEANFILES, add substitution for MKTEMP, else ninjahelper crashes

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@589 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agosys: make debconf-get-selections detection on VServers really more robust
intrigeri [Wed, 25 Jun 2008 09:21:11 +0000 (09:21 +0000)]
sys: make debconf-get-selections detection on VServers really more robust

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@588 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agosys: fix catifexec invocations with arguments to prevent "line 191: [: too many argum...
intrigeri [Wed, 25 Jun 2008 09:07:30 +0000 (09:07 +0000)]
sys: fix catifexec invocations with arguments to prevent "line 191: [: too many arguments" error messages

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@587 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agosys: make error message clearer when debconf-get-selections can not be found on the...
intrigeri [Wed, 25 Jun 2008 09:02:06 +0000 (09:02 +0000)]
sys: make error message clearer when debconf-get-selections can not be found on the host

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@586 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agosys: typo
intrigeri [Wed, 25 Jun 2008 09:01:20 +0000 (09:01 +0000)]
sys: typo

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@585 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agosys: fixed debconf-get-selections search in VServers, especially in case it is not...
intrigeri [Wed, 25 Jun 2008 09:00:04 +0000 (09:00 +0000)]
sys: fixed debconf-get-selections search in VServers, especially in case it is not available on the host

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@584 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agosys: fix typo
intrigeri [Wed, 25 Jun 2008 08:47:48 +0000 (08:47 +0000)]
sys: fix typo

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@583 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agostop failing on all the trac backups if just one fails
micah [Wed, 25 Jun 2008 03:27:06 +0000 (03:27 +0000)]
stop failing on all the trac backups if just one fails

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@582 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agofix missing which that intrigeri saw
micah [Tue, 24 Jun 2008 20:31:58 +0000 (20:31 +0000)]
fix missing which that intrigeri saw

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@581 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agoadded more robust mdadm raid device capture, by actually scanning active arrays via...
micah [Tue, 24 Jun 2008 19:57:31 +0000 (19:57 +0000)]
added more robust mdadm raid device capture, by actually scanning active arrays via mdadm, rather than just catting the mdadm.conf file, which may be empty

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@580 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agofixed catifexec function to actually work, also now takes arguments that are passed...
micah [Tue, 24 Jun 2008 19:53:36 +0000 (19:53 +0000)]
fixed catifexec function to actually work, also now takes arguments that are passed, thanks to a report from John Hallam

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@579 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agoadd the ability to save the debconf package selection states in the sys handler,...
micah [Tue, 24 Jun 2008 18:57:39 +0000 (18:57 +0000)]
add the ability to save the debconf package selection states in the sys handler, which aides in restoring installed packages with the right choices made

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@578 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agomade mktemp a requirement for building backupninja, added autotools variables to...
micah [Tue, 24 Jun 2008 18:02:23 +0000 (18:02 +0000)]
made mktemp a requirement for building backupninja, added autotools variables to substitute the proper binary location and removed bad fall-back when mktemp was not there

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@577 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agosys: support selection of VServers to run on with the new vsnames configuration optio...
intrigeri [Tue, 24 Jun 2008 16:05:44 +0000 (16:05 +0000)]
sys: support selection of VServers to run on with the new vsnames configuration option (Closes: Trac#45)

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@576 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agopgsql, mysql, svn: use new vservers_running function from lib/vserver (factorization++)
intrigeri [Tue, 24 Jun 2008 15:55:10 +0000 (15:55 +0000)]
pgsql, mysql, svn: use new vservers_running function from lib/vserver (factorization++)

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@575 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agolib/vserver: added vservers_running function, use it in sys handler (to ease future...
intrigeri [Tue, 24 Jun 2008 15:49:06 +0000 (15:49 +0000)]
lib/vserver: added vservers_running function, use it in sys handler (to ease future fix for Trac#45)

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@574 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agodup: actually allow to backup only VServers, by relaxing $include test
intrigeri [Tue, 24 Jun 2008 15:39:03 +0000 (15:39 +0000)]
dup: actually allow to backup only VServers, by relaxing $include test

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@573 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agosys: update for 2.6 kernels: use /proc/kallsyms instead of /proc/ksyms (Closes: Trac#39)
intrigeri [Tue, 24 Jun 2008 15:13:51 +0000 (15:13 +0000)]
sys: update for 2.6 kernels: use /proc/kallsyms instead of /proc/ksyms (Closes: Trac#39)

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@572 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agopgsql: clarify error message when backupdir does not exist
intrigeri [Tue, 24 Jun 2008 15:01:35 +0000 (15:01 +0000)]
pgsql: clarify error message when backupdir does not exist

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@571 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agoFixed tr construct reporting a warning (Closes: #452669).
intrigeri [Tue, 24 Jun 2008 14:36:52 +0000 (14:36 +0000)]
Fixed tr construct reporting a warning (Closes: #452669).

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@570 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agodup: warn about bandwithlimit being unused when desturl is set
intrigeri [Tue, 24 Jun 2008 14:11:22 +0000 (14:11 +0000)]
dup: warn about bandwithlimit being unused when desturl is set

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@569 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agodup: support every duplicity-supported transport with new configuration option destur...
intrigeri [Tue, 24 Jun 2008 13:32:34 +0000 (13:32 +0000)]
dup: support every duplicity-supported transport with new configuration option desturl (Closes: #483712, #346040, Trac#2)

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@568 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agoAllow the entire backup run to be halted by an action (Closes: #455836)
intrigeri [Tue, 24 Jun 2008 10:48:55 +0000 (10:48 +0000)]
Allow the entire backup run to be halted by an action (Closes: #455836)

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@567 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agoLDAP helper: make error message clearer when no supported backend is found
intrigeri [Mon, 23 Jun 2008 21:09:14 +0000 (21:09 +0000)]
LDAP helper: make error message clearer when no supported backend is found

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@566 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agoLDAP: support HDB backend just as the BDB one
intrigeri [Mon, 23 Jun 2008 21:07:19 +0000 (21:07 +0000)]
LDAP: support HDB backend just as the BDB one

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@565 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agoadd changelog entry for maildir destid_file addition
micah [Thu, 19 Jun 2008 15:06:31 +0000 (15:06 +0000)]
add changelog entry for maildir destid_file addition

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@564 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agoadd an option to maildir handler to enable you to specify a particular
micah [Thu, 19 Jun 2008 15:04:41 +0000 (15:04 +0000)]
add an option to maildir handler to enable you to specify a particular
ssh identity file, defaulting to the expected /root/.ssh/id_rsa. This
is important to have if you are trying to backup to a different user
on a backuphost than other handlers are using. For example, if the
rdiff handler is connecting to backalbatross@backupserver-pn using
/root/.ssh/id_rsa for public key authentication, and you want to
configure the maildir handler to connect as user
backmaildir@backupserver-pn you will might want to specify a different
identity file for that authentication (if you do not want to share the
id file between the 'backalbatross' and 'backmaildir' users).

Note: this cannot be accomplished with a ssh config file because that
file is host based, ie. you can only specify one user per host
specified in the config

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@563 758a04ac-41e6-0310-8a23-8373a73cc35d

15 years agofix spelling error
micah [Thu, 8 May 2008 15:16:41 +0000 (15:16 +0000)]
fix spelling error

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@562 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoadd changelog entry for maildir fix
micah [Thu, 13 Mar 2008 19:43:22 +0000 (19:43 +0000)]
add changelog entry for maildir fix

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@560 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agofix cstream definition
micah [Thu, 13 Mar 2008 15:48:59 +0000 (15:48 +0000)]
fix cstream definition

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@558 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agochange the date format for the deleted timestamp
elijah [Tue, 19 Feb 2008 20:37:39 +0000 (20:37 +0000)]
change the date format for the deleted timestamp

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@557 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agofixed bug where maildirs that start with a number were skipped. make deleted maildirs...
elijah [Tue, 19 Feb 2008 20:31:52 +0000 (20:31 +0000)]
fixed bug where maildirs that start with a number were skipped. make deleted maildirs record the date they were deleted

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@556 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agomove -maxdepth 1 option before -type d due to find giving this warning when it is...
micah [Wed, 13 Feb 2008 16:57:54 +0000 (16:57 +0000)]
move -maxdepth 1 option before -type d due to find giving this warning when it is after:

find: warning: you have specified the -maxdepth option after a
non-option argument -type, but options are not positional (-maxdepth
affects tests specified before it as well as those specified after
it).  Please specify options before other arguments.

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@555 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agosupport new duplicity versions:
intrigeri [Mon, 14 Jan 2008 20:32:19 +0000 (20:32 +0000)]
support new duplicity versions:
 - general cleanup of dup handler
 - support remove-older-than command
 - also run "duplicity cleanup" before anything else, for safety reasons
 - migrated full/incremental backup switch to new syntax
ChangeLog: removed trailing space

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@550 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agordiff: incorporate sshoptions into options via remote-schema if not there
micah [Wed, 12 Dec 2007 02:54:09 +0000 (02:54 +0000)]
rdiff: incorporate sshoptions into options via remote-schema if not there

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@549 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agofixed ignore_version default value
micah [Wed, 5 Dec 2007 20:41:54 +0000 (20:41 +0000)]
fixed ignore_version default value

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@543 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoadd wget handler, add released tag to the changelog and setup changelog for next...
micah [Sun, 2 Dec 2007 17:34:26 +0000 (17:34 +0000)]
add wget handler, add released tag to the changelog and setup changelog for next release

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@542 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoprepare for release
micah [Sun, 2 Dec 2007 17:06:06 +0000 (17:06 +0000)]
prepare for release

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@536 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoadd missing parameter to rsync
micah [Sun, 2 Dec 2007 16:56:32 +0000 (16:56 +0000)]
add missing parameter to rsync

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@533 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoduplicity: clarify comments about duplicity versions compatibility
intrigeri [Thu, 29 Nov 2007 19:54:44 +0000 (19:54 +0000)]
duplicity: clarify comments about duplicity versions compatibility

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@532 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoredhat spec file updates
micah [Wed, 28 Nov 2007 15:09:06 +0000 (15:09 +0000)]
redhat spec file updates

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@531 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agodup: new tmpdir config option, useful when duplicity fills up /tmp
intrigeri [Mon, 26 Nov 2007 07:42:24 +0000 (07:42 +0000)]
dup: new tmpdir config option, useful when duplicity fills up /tmp

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@529 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoadded bug number
micah [Sun, 25 Nov 2007 17:54:54 +0000 (17:54 +0000)]
added bug number

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@527 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agofix duplicity version test
intrigeri [Sun, 25 Nov 2007 17:17:55 +0000 (17:17 +0000)]
fix duplicity version test

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@523 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agofix typo
micah [Sun, 25 Nov 2007 00:05:37 +0000 (00:05 +0000)]
fix typo

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@515 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoallow for exclude only configurations to rdiff-backup handler: Closes Trac#21
micah [Sat, 24 Nov 2007 23:44:07 +0000 (23:44 +0000)]
allow for exclude only configurations to rdiff-backup handler: Closes Trac#21

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@510 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agofixup ldap SSL/TLS options, make TLS default in helper, Closes: Trac#13
micah [Sat, 24 Nov 2007 23:23:08 +0000 (23:23 +0000)]
fixup ldap SSL/TLS options, make TLS default in helper, Closes: Trac#13

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@509 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agofix Trac#25
micah [Sat, 24 Nov 2007 23:13:24 +0000 (23:13 +0000)]
fix Trac#25

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@508 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoFixes for Trac#24
micah [Sat, 24 Nov 2007 23:07:16 +0000 (23:07 +0000)]
Fixes for Trac#24

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@507 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agofixed ldap handler not recognizing database suffix
micah [Sat, 24 Nov 2007 23:03:21 +0000 (23:03 +0000)]
fixed ldap handler not recognizing database suffix

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@506 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agofixed Trac#29 causing slapcat + gzip not to work
micah [Sat, 24 Nov 2007 23:00:33 +0000 (23:00 +0000)]
fixed Trac#29 causing slapcat + gzip not to work

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@505 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agofixed ldap helper setting compress option wrong, standardize on options
micah [Sat, 24 Nov 2007 22:44:39 +0000 (22:44 +0000)]
fixed ldap helper setting compress option wrong, standardize on options

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@504 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoactually include the example file
micah [Sat, 24 Nov 2007 22:20:46 +0000 (22:20 +0000)]
actually include the example file

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@503 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoadd a maildir examples file
micah [Sat, 24 Nov 2007 22:17:04 +0000 (22:17 +0000)]
add a maildir examples file

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@502 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoadded local support to rdiff helper
micah [Sat, 24 Nov 2007 21:53:15 +0000 (21:53 +0000)]
added local support to rdiff helper

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@501 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agofixed Trac #1, actually add example.rsync
micah [Sat, 24 Nov 2007 21:32:30 +0000 (21:32 +0000)]
fixed Trac #1, actually add example.rsync

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@500 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoadd patch from matthew palmer to enhance mysql database selection (Closes: #452039)
micah [Tue, 20 Nov 2007 01:28:49 +0000 (01:28 +0000)]
add patch from matthew palmer to enhance mysql database selection (Closes: #452039)

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@495 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoadd example.rsync and updated rsync handler from rhatto
micah [Tue, 6 Nov 2007 21:20:36 +0000 (21:20 +0000)]
add example.rsync and updated rsync handler from rhatto

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@488 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agofixed typo (rsyn.in) that prevented make to work
intrigeri [Sat, 3 Nov 2007 03:13:21 +0000 (03:13 +0000)]
fixed typo (rsyn.in) that prevented make to work

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@487 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoremove rsnap and rename rub handler to rsync, after consultation with rhatto
micah [Fri, 2 Nov 2007 19:32:51 +0000 (19:32 +0000)]
remove rsnap and rename rub handler to rsync, after consultation with rhatto

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@486 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoadded nodata option to mysql handler, thanks to Daniel Bonniot (Closes: 408829)
micah [Fri, 2 Nov 2007 00:52:55 +0000 (00:52 +0000)]
added nodata option to mysql handler, thanks to Daniel Bonniot (Closes: 408829)

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@485 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoadded ignore_version option to rdiff handler to enable you override the version check
micah [Fri, 2 Nov 2007 00:12:04 +0000 (00:12 +0000)]
added ignore_version option to rdiff handler to enable you override the version check

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@484 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoadd some debian bug numbers to Changelog for reference
micah [Thu, 1 Nov 2007 23:54:08 +0000 (23:54 +0000)]
add some debian bug numbers to Changelog for reference

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@483 758a04ac-41e6-0310-8a23-8373a73cc35d

16 years agoSupport duplicity >= 0.4.3 invocation syntax
intrigeri [Mon, 15 Oct 2007 20:55:59 +0000 (20:55 +0000)]
Support duplicity >= 0.4.3 invocation syntax

git-svn-id: http://code.autistici.org/svn/backupninja/trunk@482 758a04ac-41e6-0310-8a23-8373a73cc35d