Browse Source

Merge pull request #7079 from valdi74/update_package_aria2

aria2: handle check_certificate=false config option
lilik-openwrt-22.03
Dirk Brenken 6 years ago
committed by GitHub
parent
commit
f4cdfcf15a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      net/aria2/files/aria2.init

+ 2
- 0
net/aria2/files/aria2.init View File

@ -252,6 +252,8 @@ aria2_start() {
if [ ."$check_certificate" = ."true" ]; then
append_setting "check-certificate=true"
append_options "ca_certificate"
elif [ ."$check_certificate" = ."false" ]; then
append_setting "check-certificate=false"
fi
if [ ."$enable_dht" = ."true" ]; then


Loading…
Cancel
Save