aboutsummaryrefslogtreecommitdiff
path: root/x200-my.confd
diff options
context:
space:
mode:
authorRobert Alessi <alessi@robertalessi.net>2019-12-15 15:22:34 +0100
committerRobert Alessi <alessi@robertalessi.net>2019-12-15 15:22:34 +0100
commit867df0cf3d06a789a92c0c7a012393a5e1a89369 (patch)
tree8eb10f177dc499f632809b07a64fa9f33c169dcc /x200-my.confd
parent5a44e23708e4ac5e83bfea87d8c13cc45a19dc9f (diff)
downloadx200-my-867df0cf3d06a789a92c0c7a012393a5e1a89369.tar.gz
optionally use rsnapshot to have incremental backups0.4
Diffstat (limited to 'x200-my.confd')
-rw-r--r--x200-my.confd38
1 files changed, 32 insertions, 6 deletions
diff --git a/x200-my.confd b/x200-my.confd
index bc0024d..35d26bd 100644
--- a/x200-my.confd
+++ b/x200-my.confd
@@ -4,15 +4,32 @@
4 4
5PWMFREQ_RATE="0x8bb7b16dc5b6a" 5PWMFREQ_RATE="0x8bb7b16dc5b6a"
6 6
7# 7##################
8# Backup options 8# Backup options #
9# 9##################
10# Activate autobackup on shutdown (true/false) 10
11# Activate autobackup on shutdown (true/false)?
11conf_autobackup="false" 12conf_autobackup="false"
12# Path to backup directory: 13# Use rsnaphot (true/false)? 'false' means 'use rsync':
13conf_backup_path="/mnt/disk" 14use_rsnapshot="false"
15
16############################
17# rsync/rsnapshot settings #
18############################
19
20# Path to backup directory (note that rsnapshot additionally needs
21# this to be specified as 'snapshot_root' in /etc/rsnapshot.conf):
22conf_backup_path="/mnt/disk/snapshots"
23
24# The following option applies both to rsync and rsnapshot.
14# Control file. This (empty) file must exist in the backup directory: 25# Control file. This (empty) file must exist in the backup directory:
15conf_control_file="dobackup" 26conf_control_file="dobackup"
27
28######################
29# rsync-only setting #
30######################
31
32# rsync only option:
16# Directories to backup: 33# Directories to backup:
17conf_backup_dirs=( 34conf_backup_dirs=(
18 "/etc" 35 "/etc"
@@ -20,3 +37,12 @@ conf_backup_dirs=(
20 "/usr/local" 37 "/usr/local"
21 "/home" 38 "/home"
22) 39)
40
41##########################
42# rsnapshot-only setting #
43##########################
44
45# Use the following line to have specific arguments passed to
46# rsnapshot such as 'daily' or the like. By default, x200-my uses
47# 'alpha', which is already defined in /etc/rsnapshot.conf:
48rsnapshot_args="alpha"