浏览代码

Merge pull request #5051 from DenverJ/fix-iptables-reload

Start iptables on each master in serial
Scott Dodson 7 年之前
父节点
当前提交
0a439f29d5
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      roles/os_firewall/tasks/firewall/iptables.yml

+ 3 - 0
roles/os_firewall/tasks/firewall/iptables.yml

@@ -29,6 +29,9 @@
     masked: no
     daemon_reload: yes
   register: result
+  delegate_to: "{{item}}"
+  run_once: true
+  with_items: "{{ ansible_play_hosts }}"
 
 - name: need to pause here, otherwise the iptables service starting can sometimes cause ssh to fail
   pause: seconds=10