diff options
author | Colin Smith <colin@pfsense.org> | 2005-08-21 07:19:51 +0000 |
---|---|---|
committer | Colin Smith <colin@pfsense.org> | 2005-08-21 07:19:51 +0000 |
commit | 321e99a1bd0ff44355a67007c6b6d8d76e50b348 (patch) | |
tree | 07531a70006361160394ab20eb145d632fab85a6 /packages | |
parent | 550587c160c9fd1cea71e1982fd0091e6612dff8 (diff) | |
download | pfsense-packages-321e99a1bd0ff44355a67007c6b6d8d76e50b348.tar.gz pfsense-packages-321e99a1bd0ff44355a67007c6b6d8d76e50b348.tar.bz2 pfsense-packages-321e99a1bd0ff44355a67007c6b6d8d76e50b348.zip |
Fix typo. Squid should now install on old package system.
XXX: General package cleanup, add service.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/squid.xml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/squid.xml b/packages/squid.xml index 2f81322a..1b1242a0 100644 --- a/packages/squid.xml +++ b/packages/squid.xml @@ -10,7 +10,7 @@ $lanip = $lancfg['ipaddr']; $lansa = gen_subnet($lancfg['ipaddr'], $lancfg['subnet']); $lansn = $lancfg['subnet']; - safe_mkdir("/usr/local/etc/squid") + safe_mkdir("/usr/local/etc/squid"); $fout = fopen("/usr/local/etc/squid/squid.conf","w"); fwrite($fout, "#\n"); fwrite($fout, "# This file was automatically generated by the pfSense package manager\n"); @@ -42,7 +42,6 @@ conf_mount_rw(); config_lock(); global $config; - /* if ($_POST[0] == "") $_POST = $config['installedpackages']['package']['squid']['config']; */ write_squid_static_config(); $fout = fopen("/usr/local/etc/squid/squid.conf", "a"); if ($_POST['cache_size'] != "") fwrite($fout, "cache_mem " . $_POST['cache_size'] . " MB\n"); |