]> git.proxmox.com Git - pve-firewall.git/blobdiff - pvefw
cleanup chain names
[pve-firewall.git] / pvefw
diff --git a/pvefw b/pvefw
index 9ba332dee5bc6ceb13fe206b9acb69f667eb74c3..029ce9bd18d0ab9382d95c293a8618bf4286a0f0 100755 (executable)
--- a/pvefw
+++ b/pvefw
@@ -107,16 +107,16 @@ __PACKAGE__->register_method ({
        my $code = sub {
            my $chash = PVE::Firewall::iptables_get_chains();
            my $cmdlist = "*filter\n";
-           my $rule = "INPUT -j proxmoxfw-INPUT";
+           my $rule = "INPUT -j PVEFW-INPUT";
            if (PVE::Firewall::iptables_rule_exist($rule)) {
                $cmdlist .= "-D $rule\n";
            }
-           $rule = "OUTPUT -j proxmoxfw-OUTPUT";
+           $rule = "OUTPUT -j PVEFW-OUTPUT";
            if (PVE::Firewall::iptables_rule_exist($rule)) {
                $cmdlist .= "-D $rule\n";
            }
 
-           $rule = "FORWARD -j proxmoxfw-FORWARD";
+           $rule = "FORWARD -j PVEFW-FORWARD";
            if (PVE::Firewall::iptables_rule_exist($rule)) {
                $cmdlist .= "-D $rule\n";
            }