]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
doc: Re-work RULES:add/insert/replace to read better.
authorDuncan Roe <duncan_roe@optusnet.com.au>
Fri, 21 Sep 2018 01:54:27 +0000 (11:54 +1000)
committerPablo Neira Ayuso <pablo@netfilter.org>
Fri, 21 Sep 2018 08:13:30 +0000 (10:13 +0200)
It was tempting to remove "position" from the synopsis,
but have left that for another patch.

Signed-off-by: Duncan Roe <duncan_roe@optusnet.com.au>
Acked-by: Phil Sutter <phil@nwl.cc>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
doc/nft.txt

index 9d04e4355f4ebb6a700170747226db7c62c2ff17..2a76a6cc63c4e9d73d58496560fd85d972064b83 100644 (file)
@@ -410,6 +410,8 @@ concurrent ruleset change happens after the translation was done: The effective
 rule index might change if a rule was inserted or deleted before the referred
 one. If the referred rule was deleted, the command is rejected by the kernel
 just as if an invalid 'handle' was given.
+The old name "position" in place of "handle" is deprecated
+and should not be used anymore.
 
 A 'comment' is a single word or a double-quoted (") multi-word string which can
 be used to make notes regarding the actual rule. *Note:* If you use bash for
@@ -418,13 +420,11 @@ servers\")
 
 [horizontal]
 *add*:: Add a new rule described by the list of statements. The
-rule is appended to the given chain unless a position is specified, in which
-case the rule is appended to the rule given by the 'handle'. The alternative
-name position is deprecated and should not be used anymore.
-*insert*:: Similar to the *add* command, but the rule is prepended to the
-beginning of the chain or before the rule with the given 'handle'.
-*replace*:: Similar to the add command, but the rule replaces the specified
-rule.
+rule is appended to the given chain unless a location is specified, in which
+case the rule is inserted after the specified rule.
+*insert*:: Same as *add* except the rule is inserted at the
+beginning of the chain or before the specified rule.
+*replace*:: Similar to *add*, but the rule replaces the specified rule.
 *delete*:: Delete the specified rule.
 
 .*add a rule to ip table input chain*