Wipe out SQUID3 config?
-
Using 2.2.2-RELEASE (amd64) with squid3 0.2.8 package.
How is it possible to completely wipe ont SQUID3 config?
I dried deleting and installing the package but the configuration stays.
Thanks!
-
So… that's just impossible?
-
Try this, best to read the whole thread. Worked for me.
Hope this helps.Jaap
-
So I've tried this :
To remove squid, squidguard, lightsquid, and anything else with 'squid' in its package name:
foreach (array_keys($config['installedpackages']) as $sec) { if (strpos($sec, "squid") !== false) unset($config['installedpackages'][$sec]); } write_config("Removed all squid-related settings");
And it did what I needed.
THANKS!