Browse Source

Merge pull request #126 from chris5560/master

[packages] tinyproxy: logging problems
lilik-openwrt-22.03
sbyx 10 years ago
parent
commit
b9f76a11e4
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      net/tinyproxy/files/tinyproxy.init

+ 5
- 1
net/tinyproxy/files/tinyproxy.init View File

@ -46,7 +46,7 @@ start_proxy() {
proxy_string "$1" StatFile >> $CFGFILE
proxy_string "$1" LogFile >> $CFGFILE
proxy_flag "$1" SysLog >> $CFGFILE
proxy_flag "$1" Syslog >> $CFGFILE
proxy_atom "$1" LogLevel >> $CFGFILE
@ -111,6 +111,10 @@ proxy_string() {
config_get _value "$SECTION" "$OPTION"
[ -z "$_value" ] && _value="$DEFAULT"
[ -n "$_value" ] && echo "${ALIAS:-${OPTION}} "'"'"$_value"'"'
[ -n "$_value" -a "$OPTION" = "LogFile" ] && {
touch $_value
chmod 666 $_value
}
}
proxy_flag() {


Loading…
Cancel
Save