|
|
a05102 |
From 9abe6ef333d4d1f7c83e10ee73bca70f64b9fdba Mon Sep 17 00:00:00 2001
|
|
|
a05102 |
From: Phil Sutter <psutter@redhat.com>
|
|
|
a05102 |
Date: Wed, 20 Jun 2018 09:36:59 +0200
|
|
|
a05102 |
Subject: [PATCH] doc: reword insert position, this expects rule handle to
|
|
|
a05102 |
insert, not a relative postition
|
|
|
a05102 |
|
|
|
a05102 |
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1571968
|
|
|
a05102 |
Upstream Status: nftables commit 45172efadbede
|
|
|
a05102 |
Conflicts: Context change due to missing commit f9cb9580b924f
|
|
|
a05102 |
("doc: nft.8 aim for consistent synopses throughout")
|
|
|
a05102 |
|
|
|
a05102 |
commit 45172efadbedee2b2dedc1e771046cca7edb0111
|
|
|
a05102 |
Author: Florian Westphal <fw@strlen.de>
|
|
|
a05102 |
Date: Tue Apr 24 16:54:52 2018 +0200
|
|
|
a05102 |
|
|
|
a05102 |
doc: reword insert position, this expects rule handle to insert, not a relative postition
|
|
|
a05102 |
|
|
|
a05102 |
Signed-off-by: Florian Westphal <fw@strlen.de>
|
|
|
a05102 |
---
|
|
|
a05102 |
doc/nft.xml | 6 +++---
|
|
|
a05102 |
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
a05102 |
|
|
|
a05102 |
diff --git a/doc/nft.xml b/doc/nft.xml
|
|
|
a05102 |
index 3da5fda..45a392f 100644
|
|
|
a05102 |
--- a/doc/nft.xml
|
|
|
a05102 |
+++ b/doc/nft.xml
|
|
|
a05102 |
@@ -835,7 +835,7 @@ filter input iif $int_ifs accept
|
|
|
a05102 |
<arg choice="opt"><replaceable>family</replaceable></arg>
|
|
|
a05102 |
<arg choice="req"><replaceable>table</replaceable></arg>
|
|
|
a05102 |
<arg choice="req"><replaceable>chain</replaceable></arg>
|
|
|
a05102 |
- <arg choice="opt">position <replaceable>position</replaceable></arg>
|
|
|
a05102 |
+ <arg choice="opt">position <replaceable>handle</replaceable></arg>
|
|
|
a05102 |
<arg choice="req" rep="repeat"><replaceable>statement</replaceable></arg>
|
|
|
a05102 |
</cmdsynopsis>
|
|
|
a05102 |
<cmdsynopsis>
|
|
|
a05102 |
@@ -868,7 +868,7 @@ filter input iif $int_ifs accept
|
|
|
a05102 |
<para>
|
|
|
a05102 |
Add a new rule described by the list of statements. The rule is appended to the
|
|
|
a05102 |
given chain unless a position is specified, in which case the rule is appended to
|
|
|
a05102 |
- the rule given by the position.
|
|
|
a05102 |
+ the rule given by the handle.
|
|
|
a05102 |
</para>
|
|
|
a05102 |
</listitem>
|
|
|
a05102 |
</varlistentry>
|
|
|
a05102 |
@@ -877,7 +877,7 @@ filter input iif $int_ifs accept
|
|
|
a05102 |
<listitem>
|
|
|
a05102 |
<para>
|
|
|
a05102 |
Similar to the <command>add</command> command, but the rule is prepended to the
|
|
|
a05102 |
- beginning of the chain or before the rule at the given position.
|
|
|
a05102 |
+ beginning of the chain or before the rule with the given handle.
|
|
|
a05102 |
</para>
|
|
|
a05102 |
</listitem>
|
|
|
a05102 |
</varlistentry>
|
|
|
a05102 |
--
|
|
|
a05102 |
1.8.3.1
|
|
|
a05102 |
|