Skip to content

Commit 0c09bfa

Browse files
committed
Fix yamllint problems
1 parent a931e1c commit 0c09bfa

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

  • linux_os/guide/system/network/network-firewalld/ruleset_modifications
    • firewalld_loopback_traffic_restricted/ansible
    • firewalld_loopback_traffic_trusted/ansible

linux_os/guide/system/network/network-firewalld/ruleset_modifications/firewalld_loopback_traffic_restricted/ansible/shared.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
destination not address="127.0.0.1" drop'
2626
register: result_trusted_ipv4_restriction
2727
changed_when:
28-
- "'ALREADY_ENABLED' not in result_trusted_ipv4_restriction.stderr"
28+
- "'ALREADY_ENABLED' not in result_trusted_ipv4_restriction.stderr"
2929

3030
- name: '{{{ rule_title }}} - Ensure firewalld trusted Zone Restricts IPv6 Loopback Traffic'
3131
ansible.builtin.command:
@@ -35,7 +35,7 @@
3535
destination not address="::1" drop'
3636
register: result_trusted_ipv6_restriction
3737
changed_when:
38-
- "'ALREADY_ENABLED' not in result_trusted_ipv6_restriction.stderr"
38+
- "'ALREADY_ENABLED' not in result_trusted_ipv6_restriction.stderr"
3939

4040
- name: '{{{ rule_title }}} - Ensure firewalld Changes are Applied'
4141
ansible.builtin.service:

linux_os/guide/system/network/network-firewalld/ruleset_modifications/firewalld_loopback_traffic_trusted/ansible/shared.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
cmd: firewall-cmd --permanent --zone=trusted --add-interface=lo
2222
register: result_lo_interface_assignment
2323
changed_when:
24-
- "'ALREADY_ENABLED' not in result_lo_interface_assignment.stderr"
24+
- "'ALREADY_ENABLED' not in result_lo_interface_assignment.stderr"
2525

2626
- name: '{{{ rule_title }}} - Ensure firewalld Changes are Applied'
2727
ansible.builtin.service:

0 commit comments

Comments
 (0)