]> git.proxmox.com Git - pve-firewall.git/commitdiff
ignor eadditional arguments when moveto is set
authorDietmar Maurer <dietmar@proxmox.com>
Tue, 25 Mar 2014 12:05:22 +0000 (13:05 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Tue, 25 Mar 2014 12:05:22 +0000 (13:05 +0100)
src/PVE/API2/Firewall/Groups.pm

index 9ce6ce775ea971bd5f45c7c44f9a08ddc96f3ad8..5c2f63c4e4052bc44469f380dc7ab35d72bd2cd5 100644 (file)
@@ -200,7 +200,7 @@ __PACKAGE__->register_method({
                type => 'string',
            },
            moveto => {
-               description => "Move rule to new position <moveto>.",
+               description => "Move rule to new position <moveto>. Other arguments are ignored.",
                type => 'integer',
                minimum => 0,
                optional => 1,
@@ -223,8 +223,6 @@ __PACKAGE__->register_method({
        
        my $rule = $rules->[$param->{pos}];
 
-       PVE::Firewall::copy_rule_data($rule, $param);
        my $moveto = $param->{moveto};
        if (defined($moveto) && $moveto != $param->{pos}) {
            my $newrules = [];
@@ -238,7 +236,9 @@ __PACKAGE__->register_method({
            push @$newrules, $rule if $moveto >= scalar(@$rules);
 
            $groups_conf->{rules}->{$param->{group}} = $newrules;
-       }           
+       } else {
+           PVE::Firewall::copy_rule_data($rule, $param);
+       }
 
        PVE::Firewall::save_security_groups($groups_conf);