Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 411973 | Differences between
and this patch

Collapse All | Expand All

(-)burp-1.3.48/manpages/bedup.8 (-2 / +2 lines)
Lines 16-22 Link Here
16
.SH OPTIONS
16
.SH OPTIONS
17
.TP
17
.TP
18
\fB\-c\fR \fBpath\fR
18
\fB\-c\fR \fBpath\fR
19
Path to config file (default: /etc/burp/burp.conf).
19
Path to config file (default: /etc/burp/burp-server.conf).
20
.TP
20
.TP
21
\fB\-g\fR \fB<list of group names>\fR
21
\fB\-g\fR \fB<list of group names>\fR
22
Only run on the directories of clients that are in one of the groups specified. The list is comma-separated. To put a client in a group, use the 'dedup_group' option in the client configuration file on the server.
22
Only run on the directories of clients that are in one of the groups specified. The list is comma-separated. To put a client in a group, use the 'dedup_group' option in the client configuration file on the server.
Lines 42-48 Link Here
42
\fB\-V\fR \fB\fR
42
\fB\-V\fR \fB\fR
43
Print version and exit.\fR
43
Print version and exit.\fR
44
.TP
44
.TP
45
By default, bedup will read /etc/burp/burp.conf and deduplicate client storage directories using special knowledge of the structure.\fR
45
By default, bedup will read /etc/burp/burp-server.conf and deduplicate client storage directories using special knowledge of the structure.\fR
46
.TP
46
.TP
47
With '\-n', this knowledge is turned off and you have to specify the directories to deduplicate on the command line. Running with '\-n' is therefore dangerous if you are deduplicating burp storage directories.
47
With '\-n', this knowledge is turned off and you have to specify the directories to deduplicate on the command line. Running with '\-n' is therefore dangerous if you are deduplicating burp storage directories.
48
48
(-)burp-1.3.48/src/bedup.c (-1 / +1 lines)
Lines 734-740 Link Here
734
static char *get_config_path(void)
734
static char *get_config_path(void)
735
{
735
{
736
        static char path[256]="";
736
        static char path[256]="";
737
        snprintf(path, sizeof(path), "%s", SYSCONFDIR "/burp.conf");
737
        snprintf(path, sizeof(path), "%s", SYSCONFDIR "/burp-server.conf");
738
        return path;
738
        return path;
739
}
739
}
740
740

Return to bug 411973