mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-14 04:52:59 +02:00
Fixed proxy.cgi to disable transparent mode when proxy is off
git-svn-id: http://svn.ipfire.org/svn/ipfire/branches/2.1/trunk@1187 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
@@ -607,12 +607,12 @@ ERROR:
|
||||
if ($proxysettings{'ENABLE'} eq 'on') {
|
||||
system ('/usr/bin/touch', "${General::swroot}/proxy/enable");
|
||||
system ('/usr/local/bin/squidctrl', 'enable'); }
|
||||
if ($proxysettings{'TRANSPARENT'} eq 'on') {
|
||||
if ($proxysettings{'TRANSPARENT'} eq 'on' && $proxysettings{'ENABLE'} eq 'on') {
|
||||
system ('/usr/bin/touch', "${General::swroot}/proxy/transparent"); }
|
||||
if ($proxysettings{'ENABLE_BLUE'} eq 'on') {
|
||||
system ('/usr/bin/touch', "${General::swroot}/proxy/enable_blue");
|
||||
system ('/usr/local/bin/squidctrl', 'enable'); }
|
||||
if ($proxysettings{'TRANSPARENT_BLUE'} eq 'on') {
|
||||
if ($proxysettings{'TRANSPARENT_BLUE'} eq 'on' && $proxysettings{'ENABLE_BLUE'} eq 'on') {
|
||||
system ('/usr/bin/touch', "${General::swroot}/proxy/transparent_blue"); }
|
||||
|
||||
if ($proxysettings{'ACTION'} eq $Lang::tr{'advproxy save and restart'}) { system('/usr/local/bin/squidctrl restart >/dev/null 2>&1'); }
|
||||
|
||||
Reference in New Issue
Block a user