Skip to content

Commit

Permalink
rhel72-s390x: allow multicast with iptables
Browse files Browse the repository at this point in the history
PR-URL: #1808
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>

See: libuv/libuv#2185 (comment)
  • Loading branch information
sam-github committed Jun 4, 2019
1 parent e9e0388 commit 20e20ef
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ansible/roles/jenkins-worker/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,13 @@
- "{{ role_path }}/tasks/partials/tap2junit/pip.yml"
skip: true

- name: Firewall | add rule to allow accepting multicast
lineinfile:
dest: /etc/sysconfig/iptables
insertafter: ":OUTPUT ACCEPT.*]"
line: "-A INPUT -m pkttype --pkt-type multicast -j ACCEPT"
when: "'rhel72-s390x' in inventory_hostname"

- name: Firewall | add basic rule to allow communication locally
lineinfile:
dest: /etc/sysconfig/iptables
Expand Down

0 comments on commit 20e20ef

Please sign in to comment.