summaryrefslogtreecommitdiffstats
path: root/src/etc/phpshellsessions/removeshaper
diff options
context:
space:
mode:
Diffstat (limited to 'src/etc/phpshellsessions/removeshaper')
-rw-r--r--src/etc/phpshellsessions/removeshaper25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/etc/phpshellsessions/removeshaper b/src/etc/phpshellsessions/removeshaper
new file mode 100644
index 0000000..298e618
--- /dev/null
+++ b/src/etc/phpshellsessions/removeshaper
@@ -0,0 +1,25 @@
+require("config.inc");
+require_once("functions.inc");
+require_once("filter.inc");
+require_once("shaper.inc");
+require_once("rrd.inc");
+
+/* Much of this borrowed from firewall_shaper.php */
+
+echo gettext("Removing shaper settings...\n");
+
+unset($config['shaper']['queue']);
+unset($queue);
+unset($altq);
+
+foreach ($config['filter']['rule'] as $key => $rule) {
+ if (isset($rule['wizard']) && $rule['wizard'] == "yes") {
+ unset($config['filter']['rule'][$key]);
+ }
+}
+if (write_config()) {
+ echo gettext("Shaper Successfully Removed.\n");
+} else {
+ echo gettext("Unable to write config.xml (Access Denied?)\n");
+}
+filter_configure(); \ No newline at end of file
OpenPOWER on IntegriCloud