1 # -*- mode: sh; sh-basic-offset: 3; indent-tabs-mode: nil; -*-
3 HELPERS="$HELPERS dup:incremental_encrypted_remote_filesystem_backup"
7 do_dup_host_includes() {
9 # choose the files to backup
11 while [ -z "$REPLY" ]; do
12 formBegin "$dup_title - host system: includes"
13 [ -z "$dup_includes" ] && dup_includes="$dup_default_includes"
14 for i in $dup_includes; do
21 [ $? = 0 ] || return 1
28 # choose the vservers to backup (into $selected_vservers)
29 choose_one_or_more_vservers "$dup_title"
30 [ $? = 0 ] || return 1
33 # choose the files to backup
35 while [ -z "$REPLY" ]; do
36 formBegin "$dup_title - vservers: vsincludes (backup these directories from every selected vserver)"
37 [ -z "$dup_vsincludes" ] && dup_vsincludes="$dup_default_includes"
38 for i in $dup_vsincludes; do
45 [ $? = 0 ] || return 1
46 dup_vsincludes="$REPLY"
53 formBegin "$dup_title: excludes"
54 [ -z "$dup_excludes" ] && dup_excludes="$dup_default_excludes"
55 for i in $dup_excludes; do
62 [ $? = 0 ] || return 1
68 choose_host_or_vservers_or_both "$dup_title"
69 [ $? = 0 ] || return 1
70 case $host_or_vservers in
73 [ $? = 0 ] || return 1
77 [ $? = 0 ] || return 1
81 [ $? = 0 ] || return 1
83 [ $? = 0 ] || return 1
90 [ $? = 0 ] || return 1
103 while [ -z "$REPLY" -o -z "$dup_destdir" -o -z "$dup_desthost" -o -z "$dup_destuser" ]; do
104 formBegin "$dup_title - destination: first three items are compulsory"
105 formItem "desthost" "$dup_desthost"
106 formItem "destuser" "$dup_destuser"
107 formItem "destdir" "$dup_destdir"
108 formItem "keep" "$dup_keep"
109 formItem "incremental" "$dup_incremental"
110 formItem "bandwidthlimit" "$dup_bandwidth"
111 formItem "sshoptions" "$dup_sshoptions"
113 [ $? = 0 ] || return 1
116 replyconverted=`echo $REPLY | tr '\n' :`
118 thereply=($replyconverted)
121 dup_desthost=${thereply[0]}
122 dup_destuser=${thereply[1]}
123 dup_destdir=${thereply[2]}
124 dup_keep=${thereply[3]}
125 dup_incremental=${thereply[4]}
126 dup_bandwidth=${thereply[5]}
127 dup_sshoptions=${thereply[6]}
136 do_dup_gpg_encryptkey() {
138 while [ -z "$REPLY" -o -z "$dup_gpg_encryptkey" ]; do
139 inputBox "$dup_title - GnuPG" "Enter ID of the public GnuPG key to be used to encrypt the backups:" "$dup_gpg_encryptkey"
140 [ $? = 0 ] || return 1
141 dup_gpg_encryptkey="$REPLY"
147 booleanBox "$dup_title - GnuPG" "Sign the backups?" "$dup_gpg_sign"
155 do_dup_gpg_signkey() {
157 booleanBox "$dup_title - GnuPG" "Use the same GnuPG key pair for encryption and signing?" "$dup_gpg_onekeypair"
159 dup_gpg_onekeypair=yes
161 dup_gpg_onekeypair=no
164 if [ "$dup_gpg_onekeypair" == "no" }; then
167 while [ -z "$REPLY" -o -z "$dup_gpg_signkey" ]; do
168 inputBox "$dup_title - GnuPG" "Enter the ID of the private GnuPG key to be used to sign the backups:" "$dup_gpg_signkey"
169 [ $? = 0 ] || return 1
170 dup_gpg_signkey="$REPLY"
175 do_dup_gpg_passphrase() {
176 local question="Enter the passphrase needed to unlock the GnuPG key:"
178 while [ -z "$REPLY" -o -z "$dup_gpg_password" ]; do
179 passwordBox "$dup_title - GnuPG" "$question"
180 [ $? = 0 ] || return 1
181 dup_gpg_password="$REPLY"
187 # symmetric or public key encryption ?
188 booleanBox "$dup_title - GnuPG" "Use public key encryption? Otherwise, symmetric encryption will be used, and data signing will be impossible." "$dup_gpg_asymmetric_encryption"
190 dup_gpg_asymmetric_encryption=yes
192 dup_gpg_asymmetric_encryption=no
195 # when using public/private key pair encryption, ask for the keys to use
196 if [ "$dup_gpg_asymmetric_encryption" == yes ]; then
197 do_dup_gpg_encryptkey ; [ $? = 0 ] || return 1
198 do_dup_gpg_sign ; [ $? = 0 ] || return 1
199 if [ "$dup_gpg_sign" == yes ]; then
200 do_dup_gpg_signkey ; [ $? = 0 ] || return 1
206 # a passphrase is alway needed
207 do_dup_gpg_passphrase
211 # TODO: replace the above line by the following when do_dup_conn is written
215 # TODO: share rdiff.helper code in some lib, and use it here
221 do_dup_misc_options() {
227 formBegin "$dup_title - misc. options"
228 formItem "nicelevel" "$dup_nicelevel"
229 formItem "testconnect" "$dup_testconnect"
230 formItem "options" "$dup_options"
232 [ $? = 0 ] || return 1
235 replyconverted=`echo $REPLY | tr '\n' :`
237 thereply=($replyconverted)
240 dup_nicelevel=${thereply[0]}
241 dup_testconnect=${thereply[1]}
242 dup_options=${thereply[2]}
247 # (rdiff.helper compatible interface... there could be some sode to share, hmmm.)
250 [ $? = 0 ] || return 1
256 get_next_filename $configdirectory/90.dup
257 cat > $next_filename <<EOF
258 # passed directly to duplicity
259 #options = --verbosity 8
260 options = $dup_options
262 # default is 0, but set to 19 if you want to lower the priority.
263 nicelevel = $dup_nicelevel
265 # default is yes. set to no to skip the test if the remote host is alive
266 testconnect = $dup_testconnect
268 ######################################################
270 ## (how to encrypt and optionally sign the backups)
272 ## WARNING: old (pre-0.9.4) example.dup used to give wrong information about
273 ## the way the following options are used. Please read the following
276 ## If the encryptkey variable is set:
277 ## - data is encrypted with the GnuPG public key specified by the encryptkey
279 ## - if signing is enabled, data is signed with the GnuPG private
280 ## key specified by the signkey variable
281 ## - the password variable is used to unlock the GnuPG key(s) used
282 ## for encryption and (optionnal) signing
284 ## If the encryptkey option is not set:
285 ## - data signing is not possible
286 ## - the password variable is used to encrypt the data with symmetric
287 ## encryption: no GnuPG key pair is needed
291 # when set to yes, encryptkey variable must be set below; if you want to use
292 # two different keys for encryption and signing, you must also set the signkey
294 # default is no, for backwards compatibility with backupninja <= 0.5.
297 # ID of the GnuPG public key used for data encryption.
298 # if not set, symmetric encryption is used, and data signing is not possible.
299 encryptkey = $dup_gpg_encryptkey
301 # ID of the GnuPG private key used for data signing.
302 # if not set, encryptkey will be used.
303 signkey = $dup_gpg_signkey
306 # NB: neither quote this, nor should it include any quotes
307 password = $dup_gpg_password
309 ######################################################
311 ## (where the files to be backed up are coming from)
315 # A few notes about includes and excludes:
316 # 1. include, exclude and vsinclude statements support globbing with '*'
317 # 2. Symlinks are not dereferenced. Moreover, an include line whose path
318 # contains, at any level, a symlink to a directory, will only have the
319 # symlink backed-up, not the target directory's content. Yes, you have to
320 # dereference yourself the symlinks, or to use 'mount --bind' instead.
321 # Example: let's say /home is a symlink to /mnt/crypt/home ; the following
322 # line will only backup a "/home" symlink ; neither /home/user nor
323 # /home/user/Mail will be backed-up :
324 # include = /home/user/Mail
325 # A workaround is to 'mount --bind /mnt/crypt/home /home' ; another one is to
327 # include = /mnt/crypt/home/user/Mail
328 # 3. All the excludes come after all the includes. The order is not otherwise
329 # taken into account.
331 # files to include in the backup
334 if [ "$host_or_vservers" == host -o "$host_or_vservers" == both ]; then
336 for i in $dup_includes; do
337 echo "include = $i" >> $next_filename
342 cat >> $next_filename <<EOF
344 # If vservers = yes in /etc/backupninja.conf then the following variables can
346 # vsnames = all | <vserver1> <vserver2> ... (default = all)
350 # Any path specified in vsinclude is added to the include list for each vserver
351 # listed in vsnames (or all if vsnames = all, which is the default).
353 # For example, vsinclude = /home will backup the /home directory in every
354 # vserver listed in vsnames. If you have 'vsnames = foo bar baz', this
355 # vsinclude will add to the include list /vservers/foo/home, /vservers/bar/home
356 # and /vservers/baz/home.
357 # Vservers paths are derived from $VROOTDIR.
361 if [ "$host_or_vservers" == vservers -o "$host_or_vservers" == both ]; then
363 echo -e "vsnames = $selected_vservers\n" >> $next_filename
364 for i in $dup_vsincludes; do
365 echo "vsinclude = $i" >> $next_filename
371 cat >> $next_filename <<EOF
373 # files to exclude from the backup
376 for i in $dup_excludes; do
377 echo "exclude = $i" >> $next_filename
381 cat >> $next_filename <<EOF
383 ######################################################
384 ## destination section
385 ## (where the files are copied to)
389 # perform an incremental backup? (default = yes)
390 # if incremental = no, perform a full backup in order to start a new backup set
391 incremental = $dup_incremental
393 # how many days of data to keep ; default is 60 days.
394 # (you can also use the time format of duplicity)
395 # 'keep = yes' means : do not delete old data, the remote host will take care of this
400 # bandwith limit, in kbit/s ; default is 0, i.e. no limit
401 #bandwidthlimit = 128
402 bandwidthlimit = $dup_bandwidth
404 # passed directly to ssh, scp (and sftp in duplicity >=0.4.2)
405 # warning: sftp does not support all scp options, especially -i; as
406 # a workaround, you can use "-o <SSHOPTION>"
407 #sshoptions = -o IdentityFile=/root/.ssh/id_dsa_duplicity
408 sshoptions = $dup_sshoptions
410 # put the backups under this directory
411 destdir = $dup_destdir
413 # the machine which will receive the backups
414 desthost = $dup_desthost
416 # make the files owned by this user
417 # note: you must be able to ssh backupuser@backhost
418 # without specifying a password (if type = remote).
419 destuser = $dup_destuser
423 chmod 600 $next_filename
430 srcitem="choose files to include & exclude $_src_done"
431 destitem="configure backup destination $_dest_done"
432 gpgitem="configure GnuPG encryption/signing $_gpg_done"
433 conitem="set up ssh keys and test remote connection $_con_done"
434 advitem="edit advanced settings $_adv_done"
435 # TODO: add the following to the menu when do_dup_conn is written
437 menuBox "$dup_title" "choose a step:" \
442 finish "finish and create config file"
443 [ $? = 0 ] || return 1
448 "dest") do_dup_dest;;
450 # TODO: enable the following when do_dup_conn is written
451 # "conn") do_dup_conn;;
454 if [[ "$_dest_done$_gpg_done$_src_done" != "(DONE)(DONE)(DONE)" ]]; then
455 # TODO: replace the previous test by the following when do_dup_conn is written
456 # if [[ "$_con_done$_dest_done$_gpg_done$_src_done" != "(DONE)(DONE)(DONE)(DONE)" ]]; then
457 msgBox "$dup_title" "You cannot create the configuration file until the four first steps are completed."
472 require_packages duplicity
475 dup_title="Duplicity action wizard"
488 dup_destdir="/backups/`hostname`"
491 dup_gpg_asymmetric_encryption="yes"
492 dup_gpg_encryptkey=""
494 dup_gpg_onekeypair="yes"
501 # Global variables whose '*' shall not be expanded
503 dup_default_includes="/var/spool/cron/crontabs /var/backups /etc /root /home /usr/local/*bin /var/lib/dpkg/status*"
504 dup_default_excludes="/home/*/.gnupg /home/*/.gnupg /home/*/.local/share/Trash /home/*/.Trash /home/*/.thumbnails /home/*/.beagle /home/*/.aMule /home/*/gtk-gnutella-downloads"