RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 2094096 - Update Ansible syntax in Firewall system role README.md file examples
Summary: Update Ansible syntax in Firewall system role README.md file examples
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 9
Classification: Red Hat
Component: rhel-system-roles
Version: 9.1
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: rc
: 9.1
Assignee: Rich Megginson
QA Contact: Jakub Haruda
URL:
Whiteboard: role:firewall
Depends On: 2081839
Blocks:
TreeView+ depends on / blocked
 
Reported: 2022-06-06 20:13 UTC by Rich Megginson
Modified: 2022-11-15 11:24 UTC (History)
7 users (show)

Fixed In Version: rhel-system-roles-1.19.2-1.el9
Doc Type: No Doc Update
Doc Text:
Clone Of: 2081839
Environment:
Last Closed: 2022-11-15 10:23:47 UTC
Type: Bug
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Github linux-system-roles firewall pull 75 0 None Merged Fix deprecated syntax in Readme 2022-06-06 20:21:08 UTC
Red Hat Issue Tracker RHELPLAN-124401 0 None None None 2022-06-06 20:18:56 UTC
Red Hat Product Errata RHEA-2022:8117 0 None None None 2022-11-15 10:24:14 UTC

Description Rich Megginson 2022-06-06 20:13:59 UTC
+++ This bug was initially created as a clone of Bug #2081839 +++

Description of problem:
The firewall system role README.md file has several examples with syntax similar to this:

service: [ 'tftp', 'ftp' ]

From what I understand this syntax is deprecated and the recommended syntax is:

service: [tftp, ftp]

Version-Release number of selected component (if applicable):  RHEL 8.6 / 9.0


How reproducible:
Every time

Steps to Reproduce:
1. cat /usr/share/doc/rhel-system-roles/firewall/README.md

--- Additional comment from Rich Megginson on 2022-05-04 20:14:50 UTC ---

(In reply to Brian Smith from comment #0)
> Description of problem:
> The firewall system role README.md file has several examples with syntax
> similar to this:
> 
> service: [ 'tftp', 'ftp' ]
> port: [ '443/tcp', '443/udp' ]
> 
> From what I understand this syntax is deprecated and the recommended syntax
> is:
> 
> service: '[tftp, ftp]'
> port: '[443/tcp, 443/udp]'
> 
> Version-Release number of selected component (if applicable):  RHEL 8.6 / 9.0
> 
> 
> How reproducible:
> Every time
> 
> Steps to Reproduce:
> 1. cat /usr/share/doc/rhel-system-roles/firewall/README.md

To clarify:

service: [tftp, ftp]

Is preferred for very short lists as opposed to

service:
  - tftp
  - ftp

which is also correct but much more verbose.

note that '[tftp, ftp]' is a string, not a list

Also note that [tftp, ftp] is preferred over ['tftp', 'ftp'] since in YAML tftp and ftp are unambiguously string values.

However, port: ['443/tcp', '443/udp']

the values should be quoted as they begin with a number - quoting the values explicitly makes them strings so there is no ambiguity.

--- Additional comment from Brian Smith on 2022-05-06 16:01:12 UTC ---

Updated description.

--- Additional comment from Vrinda on 2022-05-24 17:45:15 UTC ---

https://github.com/linux-system-roles/firewall/pull/75

Comment 10 errata-xmlrpc 2022-11-15 10:23:47 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory (rhel-system-roles bug fix and enhancement update), and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHEA-2022:8117


Note You need to log in before you can comment on or make changes to this bug.