version XX -- ...
added pgsql (PostgreSQL) handler, with vservers support
-
+ added vservers support to duplicity handler
+ Note: the configuration is a bit different of rdiff
+ handler's one, but the default behavior is the same: have
+ a look to example.dup.
+
version 0.7 -- July 26 2005
added ninjahelper: a dialog based wizard for creating backupninja configs.
considerably improved and changed the log file output.
include = /var/lib/dpkg/status
include = /var/lib/dpkg/status-old
+# If vservers = yes in /etc/backupninja.conf then the following variables can
+# be used:
+# vsnames = all | <vserver1> <vserver2> ... (default = all)
+# vsinclude = <path>
+# Any path specified in vsinclude is added to the include list for each vserver
+# listed in vsnames (or all if vsnames = all).
+# E.g. vsinclude = /home will backup the /home partition in every vserver
+# listed in vsnames. If you have vsnames = "foo bar baz", this vsinclude will
+# add to the include list /vservers/foo/home, /vservers/bar/home and
+# /vservers/baz/home.
+# Vservers paths are derived from $VROOTDIR.
+
# rdiff-backup specific comment, TO ADAPT
# files to exclude from the backup
# (supports globbing with '*')
setsection source
getconf include
+getconf vsnames all
+getconf vsinclude
getconf exclude
setsection dest
[ "$include" != "" ] || fatal "No source includes specified"
[ "$password" != "" ] || fatal "No password specified"
-# see if we can login
+### vservers stuff ###
+
+# See if vservers are configured.
+# If so, check that the ones listed in $vsnames do exist.
+if [ "$vservers" == "yes" ]; then
+ [ -d "$VROOTDIR" ] || fatal "vservers enabled, but $VROOTDIR does not exist!"
+ if [ "$vsnames" == "all" ]; then
+ vsnames=""
+ for vserver in `ls $VROOTDIR | grep -v lost+found | grep -v ARCHIVES`; do
+ vsnames="$vserver $vsnames"
+ done
+ else
+ for vserver in "$vsnames"; do
+ [ -d "$VROOTDIR/$vserver" ] || fatal "vserver '$vserver' does not exist."
+ done
+ fi
+ if [ -n "$vsnames" ]; then
+ if [ -n "$vsinclude" ]; then
+ info "Using vservers '$vsnames'"
+ usevserver=1
+ fi
+ else
+ [ -z "$vsinclude" ] || warning 'vsnames is empty, vsinclude configuration lines will be ignored'
+ fi
+fi
+
+### see if we can login ###
+
if [ "$testconnect" == "yes" ]; then
debug "ssh $sshoptions -o PasswordAuthentication=no $desthost -l $destuser 'echo -n 1'"
if [ ! $test ]; then
execstr="${execstr}--include $str "
done
+# vsincludes
+if [ $usevserver ]; then
+ for vserver in $vsnames; do
+ for vi in $vsinclude; do
+ str="${vi//__star__/*}"
+ execstr="${execstr}--include '$VROOTDIR/$vserver$str' "
+ done
+ done
+fi
+
### EXECUTE ###
# exclude everything else, start with root