mirror of
https://github.com/openwrt/luci.git
synced 2025-01-31 08:21:48 +00:00
9dda104ee7
Signed-off-by: Van Waholtz <vanwaholtz@gmail.com>
26 lines
479 B
Bash
Executable File
26 lines
479 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "$IPKG_INSTROOT/usr/share/libubox/jshn.sh"
|
|
|
|
action=$1
|
|
shift
|
|
|
|
case "$action" in
|
|
cat)
|
|
case "$1" in
|
|
conf|session)
|
|
config_dir="$(uci -q get aria2.main.config_dir)"
|
|
list_file="${config_dir:-/var/etc/aria2}/aria2.$1.main"
|
|
json_init
|
|
json_add_string file "$list_file"
|
|
json_add_string content "$(cat "$list_file")"
|
|
json_dump
|
|
;;
|
|
esac
|
|
;;
|
|
tail)
|
|
log_file=$(uci -q get aria2.main.log)
|
|
tail -n 50 "${log_file:-/var/log/aria2.log}"
|
|
;;
|
|
esac
|