From: Anton Ryzhov Date: Wed, 17 Mar 2021 23:09:24 +0000 (+0100) Subject: restic-rest-server: fix configuration option names X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=a8c34cbed02962253018c24b4e0cd52f4088c482;p=feed%2Fpackages.git restic-rest-server: fix configuration option names Signed-off-by: Anton Ryzhov (cherry picked from commit c61ed3e93fe60f23b2fccb6d62222fc09f6e555e) --- diff --git a/net/restic-rest-server/files/etc/config/restic-rest-server b/net/restic-rest-server/files/etc/config/restic-rest-server index 861a93c248..2492de6f7d 100644 --- a/net/restic-rest-server/files/etc/config/restic-rest-server +++ b/net/restic-rest-server/files/etc/config/restic-rest-server @@ -1,13 +1,13 @@ config rest-server option enabled '0' option path '/mnt/backup' # data directory (default "/tmp/restic") - #option append-only '1' # enable append only mode + #option append_only '1' # enable append only mode #option cpuprofile '/mnt/backup/cpuprofile' # write CPU profile to file #option debug '1' # output debug messages #option listen ':8000' # listen address (default ":8000") #option log '/mnt/backup/http.log' # log HTTP requests in the combined log format - #option private-repos '1' # users can only access their private repo + #option private_repos '1' # users can only access their private repo #option prometheus '1' # enable Prometheus metrics #option tls '1' # turn on TLS support - #option tls-cert '/mnt/backup/public_key' # TLS certificate path - #option tls-key '/mnt/backup/private_key' # TLS key path + #option tls_cert '/mnt/backup/public_key' # TLS certificate path + #option tls_key '/mnt/backup/private_key' # TLS key path