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/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/src/bedup.c (-1 / +1 lines)
Lines 740-746 Link Here
740
static char *get_config_path(void)
740
static char *get_config_path(void)
741
{
741
{
742
        static char path[256]="";
742
        static char path[256]="";
743
        snprintf(path, sizeof(path), "%s", SYSCONFDIR "/burp.conf");
743
        snprintf(path, sizeof(path), "%s", SYSCONFDIR "/burp-server.conf");
744
        return path;
744
        return path;
745
}
745
}
746
746

Return to bug 411973