mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-08 20:02:32 +01:00
Fix(restic) remove verbose option
BackupNinja does not capture command output so this option is useless, plus it make check command fails.
This commit is contained in:
parent
0b9117b39f
commit
acee92fef5
@ -69,9 +69,6 @@ password = secret
|
||||
# Path to a file containing PEM encoded TLS client certificate and private key [path]
|
||||
#tls_client_cert =
|
||||
|
||||
# Be verbose (level n) [integer]
|
||||
#verbose =
|
||||
|
||||
[s3]
|
||||
|
||||
#aws_access_key_id =
|
||||
|
@ -31,7 +31,6 @@ getconf password_file
|
||||
getconf quiet
|
||||
getconf repository
|
||||
getconf tls_client_cert
|
||||
getconf verbose
|
||||
|
||||
setsection s3
|
||||
|
||||
@ -128,9 +127,6 @@ function run_cmd {
|
||||
[ -n "$tls_client_cert" ] && \
|
||||
cmd_global_options+="--tls-client-cert $tls_client_cert "
|
||||
|
||||
[ -n "$verbose" ] && \
|
||||
cmd_global_options+="--verbose $verbose "
|
||||
|
||||
### REPOSITORY ################################################################
|
||||
|
||||
# SFTP repository
|
||||
|
Loading…
Reference in New Issue
Block a user