added missing variable

Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
This commit is contained in:
Mark Bolwell 2024-09-09 12:36:58 +01:00
parent ab3c9cc8aa
commit e915a7ae5d
No known key found for this signature in database
GPG key ID: 997FF7FE93AEB5B9

View file

@ -733,16 +733,21 @@ rhel9cis_firewall: firewalld
rhel9cis_default_zone: public rhel9cis_default_zone: public
## Controls 4.3.x nftables ## Controls 4.3.x nftables
# This variable stores the name of the table to be used when configuring nftables(creating chains, configuring loopback
# traffic, established connections, default deny). If 'rhel9cis_nft_tables_autonewtable' is set as true, a new table will ## 4.3.1 Ensure nftables base chains exist
# be created using as name the value stored by this variable.
rhel9cis_nft_tables_tablename: filter
## Ensure nftables base chains exist
# This variable governs if a nftables base chain(entry point for packets from the networking stack) will be automatically # This variable governs if a nftables base chain(entry point for packets from the networking stack) will be automatically
# created, if needed. Without a chain, a hook for input, forward, and delete, packets that would flow through those # created, if needed. Without a chain, a hook for input, forward, and delete, packets that would flow through those
# chains will not be touched by nftables. # chains will not be touched by nftables.
rhel9cis_nft_tables_autochaincreate: true rhel9cis_nft_tables_autochaincreate: true
## 4.3.2 Create tables if required
rhel9cis_nft_tables_autonewtable: true
# This variable stores the name of the table to be used when configuring nftables(creating chains, configuring loopback
# traffic, established connections, default deny). If 'rhel9cis_nft_tables_autonewtable' is set as true, a new table will
# be created using as name the value stored by this variable.
rhel9cis_nft_tables_tablename: filter
## Section5 vars ## Section5 vars
## Section 5.1 - SSH ## Section 5.1 - SSH