The "Extra Settings" section `extra_setting` option name does not match what the `net/aria2` package expects. See: - https://github.com/openwrt/packages/blob/openwrt-19.07/net/aria2/files/aria2.init#L311 - https://github.com/openwrt/packages/blob/openwrt-19.07/net/aria2/files/aria2.conf#L31 Causing the luci UI "Extra Settings" option to have no effect. This fix renames `extra_setting` => `extra_settings`. Signed-off-by: Raymond Wanyoike <raymond.wanyoike@gmail.com>
17 lines
396 B
Bash
Executable file
17 lines
396 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ ."$(uci -q get aria2.main)" != ."aria2" ]; then
|
|
uci -q batch <<-EOF >/dev/null
|
|
add aria2 aria2
|
|
rename aria2.@aria2[-1]="main"
|
|
set aria2.main.enabled=0
|
|
set aria2.main.dir="/var/run/aria2"
|
|
set aria2.main.config_dir="/var/etc/aria2"
|
|
add_list aria2.main.header=""
|
|
add_list aria2.main.bt_tracker=""
|
|
add_list aria2.main.extra_settings=""
|
|
commit aria2
|
|
EOF
|
|
fi
|
|
|
|
exit 0
|