diff options
author | Renato Botelho <renato@netgate.com> | 2015-09-09 07:59:05 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2015-09-09 07:59:05 -0300 |
commit | 94a19e81399de604f6cb4d34ffd18fb5e2751a6e (patch) | |
tree | b2d7b0ac929e9c672fe818b72d5f57848ad42a1c | |
parent | 9b86077a929e727fe7d86fb8ed8d831e602fdd2d (diff) | |
parent | bca9c324b12ca25bd87b4390852fd188f1a00b23 (diff) | |
download | pfsense-packages-94a19e81399de604f6cb4d34ffd18fb5e2751a6e.tar.gz pfsense-packages-94a19e81399de604f6cb4d34ffd18fb5e2751a6e.tar.bz2 pfsense-packages-94a19e81399de604f6cb4d34ffd18fb5e2751a6e.zip |
Merge pull request #1053 from doktornotor/patch-2
-rwxr-xr-x | config/squid3/34/squid.inc | 11 | ||||
-rw-r--r-- | pkg_config.10.xml | 2 |
2 files changed, 7 insertions, 6 deletions
diff --git a/config/squid3/34/squid.inc b/config/squid3/34/squid.inc index 57527876..76deb94c 100755 --- a/config/squid3/34/squid.inc +++ b/config/squid3/34/squid.inc @@ -306,9 +306,10 @@ function squid_install_command() { update_status("Creating squid cache pools... One moment please..."); squid_dash_z(); - /* make sure pinger is executable */ + /* make sure pinger is executable and suid root */ + // XXX: Bug #5114 if (file_exists(SQUID_LOCALBASE. "/libexec/squid/pinger")) - @chmod(SQUID_LOCALBASE. "/libexec/squid/pinger", 0755); + chmod(SQUID_LOCALBASE. "/libexec/squid/pinger", 4755); // XXX: Is it really necessary? if (file_exists("/usr/local/etc/rc.d/squid")) @@ -1876,10 +1877,10 @@ function squid_resync($via_rpc="no") { // write config file file_put_contents(SQUID_CONFFILE, $conf); - /* make sure pinger is executable */ - // XXX: Is it really necessary? Who could change its permission? + /* make sure pinger is executable and suid root */ + // XXX: Bug #5114 if (file_exists(SQUID_LOCALBASE . "/libexec/squid/pinger")) - @chmod(SQUID_LOCALBASE. "/libexec/squid/pinger", 0755); + chmod(SQUID_LOCALBASE. "/libexec/squid/pinger", 4755); $log_dir=""; // check if squid is enabled diff --git a/pkg_config.10.xml b/pkg_config.10.xml index cb87e2a1..9576fa8a 100644 --- a/pkg_config.10.xml +++ b/pkg_config.10.xml @@ -1052,7 +1052,7 @@ <pkginfolink>https://forum.pfsense.org/index.php/topic,48347.0.html</pkginfolink> <website>http://www.squid-cache.org/</website> <category>Network</category> - <version>0.3.0</version> + <version>0.3.1</version> <status>beta</status> <required_version>2.2</required_version> <maintainer>marcellocoutinho@gmail.com fernando@netfilter.com.br seth.mos@dds.nl mfuchs77@googlemail.com jimp@pfsense.org</maintainer> |