Blame SOURCES/0032-docs-replace-occurrences-of-the-term-blacklist-with-.patch

725d6a
From d48ffab0a49db8c937bbd62b0b8b755b3dbca4a8 Mon Sep 17 00:00:00 2001
725d6a
From: Eric Garver <eric@garver.life>
725d6a
Date: Tue, 23 Jun 2020 13:39:49 -0400
725d6a
Subject: [PATCH 32/45] docs: replace occurrences of the term blacklist with
725d6a
 denylist
725d6a
725d6a
(cherry picked from commit af3f7cd074f737c584a42cf1028f18e6fa597204)
725d6a
(cherry picked from commit 621916b2dbb4cb04da4a0babc3b741202fd709b4)
725d6a
---
725d6a
 doc/xml/firewalld.direct.xml | 12 ++++++------
725d6a
 src/firewall-config.glade    |  2 +-
725d6a
 2 files changed, 7 insertions(+), 7 deletions(-)
725d6a
725d6a
diff --git a/doc/xml/firewalld.direct.xml b/doc/xml/firewalld.direct.xml
725d6a
index de7b5973dd7f..d65b66f74513 100644
725d6a
--- a/doc/xml/firewalld.direct.xml
725d6a
+++ b/doc/xml/firewalld.direct.xml
725d6a
@@ -273,16 +273,16 @@
725d6a
     <title>Example</title>
725d6a
 
725d6a
     <para>
725d6a
-      Blacklisting of the networks 192.168.1.0/24 and 192.168.5.0/24 with logging and dropping early in the raw table:
725d6a
+      Denylisting of the networks 192.168.1.0/24 and 192.168.5.0/24 with logging and dropping early in the raw table:
725d6a
       
725d6a
       <programlisting>
725d6a
 <?xml version="1.0" encoding="utf-8"?>
725d6a
 <direct>
725d6a
-  <chain ipv="ipv4" table="raw" chain="blacklist"/>
725d6a
-  <rule ipv="ipv4" table="raw" chain="PREROUTING" priority="0">-s 192.168.1.0/24 -j blacklist</rule>
725d6a
-  <rule ipv="ipv4" table="raw" chain="PREROUTING" priority="1">-s 192.168.5.0/24 -j blacklist</rule>
725d6a
-  <rule ipv="ipv4" table="raw" chain="blacklist" priority="0">-m limit --limit 1/min -j LOG --log-prefix "blacklisted: "</rule>
725d6a
-  <rule ipv="ipv4" table="raw" chain="blacklist" priority="1">-j DROP</rule>
725d6a
+  <chain ipv="ipv4" table="raw" chain="denylist"/>
725d6a
+  <rule ipv="ipv4" table="raw" chain="PREROUTING" priority="0">-s 192.168.1.0/24 -j denylist</rule>
725d6a
+  <rule ipv="ipv4" table="raw" chain="PREROUTING" priority="1">-s 192.168.5.0/24 -j denylist</rule>
725d6a
+  <rule ipv="ipv4" table="raw" chain="denylist" priority="0">-m limit --limit 1/min -j LOG --log-prefix "denylisted: "</rule>
725d6a
+  <rule ipv="ipv4" table="raw" chain="denylist" priority="1">-j DROP</rule>
725d6a
 </direct>
725d6a
       </programlisting>
725d6a
       
725d6a
diff --git a/src/firewall-config.glade b/src/firewall-config.glade
725d6a
index 689433c47eca..6c057f66f401 100644
725d6a
--- a/src/firewall-config.glade
725d6a
+++ b/src/firewall-config.glade
725d6a
@@ -9761,7 +9761,7 @@
725d6a
               <object class="GtkLabel" id="label38">
725d6a
                 <property name="can_focus">False</property>
725d6a
                 <property name="halign">start</property>
725d6a
-                <property name="label" translatable="yes">For host or network white or blacklisting deactivate the element.</property>
725d6a
+                <property name="label" translatable="yes">For host or network allow or denylisting deactivate the element.</property>
725d6a
                 <property name="wrap">True</property>
725d6a
                 <property name="xalign">0</property>
725d6a
                 <property name="yalign">0</property>
725d6a
-- 
725d6a
2.27.0
725d6a