539a7ab83efb317addc09d8d2076c1a4f785e245
[matthijs/upstream/backupninja.git] / examples / example.dup
1
2 # passed directly to duplicity
3 #options = --verbosity 8
4
5 # default is 0, but set to 19 if you want to lower the priority.
6 nicelevel = 19
7
8 # default is yes. set to no to skip the test if the remote host is alive
9 #testconnect = no
10
11 ######################################################
12 ## gpg section
13 ## (how to encrypt and optionally sign the backups)
14 ##
15 ## WARNING: old (pre-0.9.4) example.dup used to give wrong information about
16 ##          the way the following options are used. Please read the following
17 ##          carefully.
18 ##
19 ## If the encryptkey variable is set:
20 ##   - data is encrypted with the GnuPG public key specified by the encryptkey
21 ##     variable
22 ##   - if signing is enabled, data is signed with the GnuPG private
23 ##     key specified by the signkey variable
24 ##   - the password variable is used to unlock the GnuPG key(s) used
25 ##     for encryption and (optionnal) signing
26 ##
27 ## If the encryptkey option is not set:
28 ##   - data signing is not possible
29 ##   - the password variable is used to encrypt the data with symmetric
30 ##     encryption: no GnuPG key pair is needed
31
32 [gpg]
33
34 # when set to yes, encryptkey variable must be set below; if you want to use
35 # two different keys for encryption and signing, you must also set the signkey
36 # variable below.
37 # default is no, for backwards compatibility with backupninja <= 0.5.
38 sign = yes
39
40 # ID of the GnuPG public key used for data encryption.
41 # if not set, symmetric encryption is used, and data signing is not possible.
42 encryptkey = 04D9EA79
43
44 # ID of the GnuPG private key used for data signing.
45 # if not set, encryptkey will be used.
46 #signkey = 04D9EA79
47
48 # password
49 # NB: neither quote this, nor should it contain any quotes
50 password = a_very_complicated_passphrase
51
52 ######################################################
53 ## source section
54 ## (where the files to be backed up are coming from)
55
56 [source]
57
58 # files to include in the backup
59 # (supports globbing with '*')
60
61 include = /var/spool/cron/crontabs
62 include = /var/backups
63 include = /etc
64 include = /root
65 include = /home
66 include = /usr/local/bin
67 include = /usr/local/sbin
68 include = /var/lib/dpkg/status
69 include = /var/lib/dpkg/status-old
70
71 # If vservers = yes in /etc/backupninja.conf then the following variables can
72 # be used:
73 # vsnames = all | <vserver1> <vserver2> ... (default = all)
74 # vsinclude = <path>
75 # vsinclude = <path>
76 # ...
77 # Any path specified in vsinclude is added to the include list for each vserver
78 # listed in vsnames (or all if vsnames = all, which is the default).
79 #
80 # For example, vsinclude = /home will backup the /home directory in every
81 # vserver listed in vsnames. If you have 'vsnames = foo bar baz', this
82 # vsinclude will add to the include list /vservers/foo/home, /vservers/bar/home
83 # and /vservers/baz/home.
84 # Vservers paths are derived from $VROOTDIR.
85 # vsinclude supports globbing with '*'.
86
87 # files to exclude from the backup
88 # (supports globbing with '*')
89 exclude = /home/*/.gnupg
90
91 ######################################################
92 ## destination section
93 ## (where the files are copied to)
94
95 [dest]
96
97 # perform an incremental backup? (default = yes)
98 # if incremental = no, perform a full backup in order to start a new backup set
99 #incremental = yes
100
101 # how many days of data to keep ; default is 60 days.
102 # (you can also use the time format of duplicity)
103 # 'keep = yes' means : do not delete old data, the remote host will take care of this
104 #keep = 60
105 #keep = yes
106
107 # bandwith limit, in kbit/s ; default is 0, i.e. no limit
108 # NB: does not work anymore with duplicity >=0.4.2, work in progress to fix this
109 #bandwidthlimit = 128
110
111 # passed directly to ssh and scp
112 sshoptions = -i /root/.ssh/id_dsa_duplicity
113
114 # put the backups under this directory
115 destdir = /backups
116
117 # the machine which will receive the backups
118 desthost = backuphost
119
120 # make the files owned by this user
121 # note: you must be able to ssh backupuser@backhost
122 # without specifying a password (if type = remote).
123 destuser = backupuser
124