r/burp: Enable progress counter for ad-hoc runs
Before the `burp` tool gained the `-Q` option, the only way to disable the progress counter was through the configuration file. Since we do not want any output from automatic backups (except of course catastrophic failures), since it would end up being e-mailed by cron, the progress counter had to be disabled globally. This meant that on-demand runs on a terminal could not have a progress counter, which was pretty disappointing. Now that `burp` has `-Q`, this is no longer the case. Scheduled backups can run with `-Q`, but ad-hoc runs can omit it to get a progress counter.ntfy
parent
b62f08ccd4
commit
80b267d6e5
|
@ -1 +1 @@
|
||||||
18,48 * * * * root /usr/sbin/burp -a t
|
18,48 * * * * root /usr/sbin/burp -a t -Q
|
||||||
|
|
|
@ -16,7 +16,7 @@ cname = {{ burp_cname }}
|
||||||
pidfile = /var/run/burp.client.pid
|
pidfile = /var/run/burp.client.pid
|
||||||
syslog = 1
|
syslog = 1
|
||||||
stdout = 1
|
stdout = 1
|
||||||
progress_counter = 0
|
progress_counter = 1
|
||||||
# Ratelimit throttles the send speed. Specified in Megabits per second (Mb/s).
|
# Ratelimit throttles the send speed. Specified in Megabits per second (Mb/s).
|
||||||
# ratelimit = 1.5
|
# ratelimit = 1.5
|
||||||
# Network timeout defaults to 7200 seconds (2 hours).
|
# Network timeout defaults to 7200 seconds (2 hours).
|
||||||
|
|
Loading…
Reference in New Issue