1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
--- conf/config.pl.formatted 2013-09-23 23:12:30.708129365 +0300
+++ conf/config.pl 2013-09-23 23:12:39.448043656 +0300
@@ -1305,7 +1305,7 @@
'--times',
'--block-size=2048',
'--recursive',
-
+ '--specials',
#
# Rsync >= 2.6.3 supports the --checksum-seed option
# which allows rsync checksum caching on the server.
@@ -1313,7 +1313,7 @@
# you have a recent client rsync version and you want
# to enable checksum caching.
#
- #'--checksum-seed=32761',
+ '--checksum-seed=32761',
];
#
@@ -1383,6 +1383,7 @@
'--relative',
'--ignore-times',
'--recursive',
+ '--specials',
#
# Rsync >= 2.6.3 supports the --checksum-seed option
@@ -1391,7 +1392,7 @@
# you have a recent client rsync version and you want
# to enable checksum caching.
#
- #'--checksum-seed=32761',
+ '--checksum-seed=32761',
#
# Add additional arguments here
@@ -2029,7 +2030,7 @@
# --> administrative users are only craig and celia'.
#
$Conf{CgiAdminUserGroup} = '';
-$Conf{CgiAdminUsers} = '';
+$Conf{CgiAdminUsers} = 'backuppc';
#
# URL of the BackupPC_Admin CGI script. Used for email messages.
@@ -2076,7 +2077,7 @@
# dates (MM/DD), a value of 2 uses full YYYY-MM-DD format, and zero
# for international dates (DD/MM).
#
-$Conf{CgiDateFormatMMDD} = 1;
+$Conf{CgiDateFormatMMDD} = 2;
#
# If set, the complete list of hosts appears in the left navigation
@@ -2262,7 +2263,7 @@
ClientTimeout => 1,
MaxOldPerPCLogFiles => 1,
CompressLevel => 1,
- ClientNameAlias => 1,
+ ClientNameAlias => 0,
DumpPreUserCmd => 0,
DumpPostUserCmd => 0,
RestorePreUserCmd => 0,
|