-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DO NOT MERGE: Fix iptables persistence after reboot #373
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,14 +26,20 @@ | |
yum: pkg={{ item }} state=present | ||
with_items: | ||
- iptables-services | ||
when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux' | ||
when: ansible_distribution == 'CentOS' or ansible_distribution == 'RedHat' | ||
|
||
- name: Install iptables-persistent | ||
- name: Install iptables-persistent | ||
apt: name={{item}} state=installed | ||
with_items: | ||
- iptables-persistent | ||
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu' | ||
|
||
- name: Enable iptables service | ||
command: systemctl enable iptables | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. use service module instead |
||
|
||
- name: Start iptables service | ||
command: systemctl start iptables | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ditto |
||
|
||
- name: setup iptables for etcd | ||
shell: > | ||
( iptables -L INPUT | grep "{{ etcd_rule_comment }} ({{ item }})" ) || \ | ||
|
@@ -45,10 +51,10 @@ | |
- "{{ etcd_peer_port1 }}" | ||
- "{{ etcd_peer_port2 }}" | ||
|
||
# Save rules into /etc/sysconfig/iptables file for restoring rules on boot | ||
# Save rules into /etc/sysconfig/iptables file for restoring rules on boot | ||
- name: Save iptables | ||
command: service iptables save | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should use systemctl instead ... , but this may still work on older version of rhel |
||
when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux' | ||
when: ansible_distribution == 'CentOS' or ansible_distribution == 'RedHat' | ||
|
||
- name: copy the etcd start/stop script | ||
template: src=etcd.j2 dest=/usr/bin/etcd.sh mode=u=rwx,g=rx,o=rx | ||
|
@@ -58,4 +64,3 @@ | |
|
||
- name: start etcd | ||
systemd: name=etcd daemon_reload=yes state=started enabled=yes | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be able to use
ansible_os_family
instead