summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorDerek Jennings <djennings@mageia.org>2013-07-10 07:29:11 +0000
committerColin Guthrie <colin@mageia.org>2013-08-24 18:29:43 +0100
commit8fde8b635f6ff53f282b3dde0f0c0ba4522a7a1b (patch)
tree8f1e4d2edc0212ec8a9fe441dadfa613dab63421 /bin
parent78b533dcec34cb48a40bc9be7d01a16f91b4fa09 (diff)
downloaddrakguard-8fde8b635f6ff53f282b3dde0f0c0ba4522a7a1b.tar
drakguard-8fde8b635f6ff53f282b3dde0f0c0ba4522a7a1b.tar.gz
drakguard-8fde8b635f6ff53f282b3dde0f0c0ba4522a7a1b.tar.bz2
drakguard-8fde8b635f6ff53f282b3dde0f0c0ba4522a7a1b.tar.xz
drakguard-8fde8b635f6ff53f282b3dde0f0c0ba4522a7a1b.zip
only use transparent proxy with squid <3.2 (mga#10513)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/drakguard4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/drakguard b/bin/drakguard
index 42f8e90..5b34430 100755
--- a/bin/drakguard
+++ b/bin/drakguard
@@ -579,7 +579,9 @@ sub unblock_internet_dansguardian {
sub enable_transparent_proxy {
my ($port) = @_;
#- FIXME: use network::squid once it is rewritten to be more gentle with the config file
- subst_config_line($network::squid::squid_conf_file, "http_port $port transparent\n");
+ # Only use transparent proxy if squid version < 3.2. Handle upgrades nicely
+ substr(`rpm -q squid`, 6, 3) < 3.2 ? subst_config_line($network::squid::squid_conf_file, "http_port $port transparent\n") :
+ subst_config_line($network::squid::squid_conf_file, "http_port $port\n");
}
#- mostly duplicated for MDK::Common::System::getVarsFromSh