summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node/tasks
diff options
context:
space:
mode:
authorAndrew Butcher <abutcher@redhat.com>2017-05-19 13:57:59 -0400
committerAndrew Butcher <abutcher@redhat.com>2017-05-19 14:36:08 -0400
commite266fb169d48f191ebec8d79b625f5db195a1ad0 (patch)
tree457ccaf5c97a48ee7109f4b2a1fbca78a39ea67a /roles/openshift_node/tasks
parent963c7c90af3358014faccd0eb60f3476d14985f4 (diff)
downloadopenshift-e266fb169d48f191ebec8d79b625f5db195a1ad0.tar.gz
openshift-e266fb169d48f191ebec8d79b625f5db195a1ad0.tar.bz2
openshift-e266fb169d48f191ebec8d79b625f5db195a1ad0.tar.xz
openshift-e266fb169d48f191ebec8d79b625f5db195a1ad0.zip
Workaround sysctl module issue with py3 by converting task to lineinfile.
Diffstat (limited to 'roles/openshift_node/tasks')
-rw-r--r--roles/openshift_node/tasks/main.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/roles/openshift_node/tasks/main.yml b/roles/openshift_node/tasks/main.yml
index 656874f56..54ba5ba01 100644
--- a/roles/openshift_node/tasks/main.yml
+++ b/roles/openshift_node/tasks/main.yml
@@ -104,8 +104,14 @@
# The atomic-openshift-node service will set this parameter on
# startup, but if the network service is restarted this setting is
# lost. Reference: https://bugzilla.redhat.com/show_bug.cgi?id=1372388
+#
+# Use lineinfile w/ a handler for this task until
+# https://github.com/ansible/ansible/pull/24277 is included in an
+# ansible release and we can use the sysctl module.
- name: Persist net.ipv4.ip_forward sysctl entry
- sysctl: name="net.ipv4.ip_forward" value=1 sysctl_set=yes state=present reload=yes
+ lineinfile: dest=/etc/sysctl.conf regexp='^net.ipv4.ip_forward' line='net.ipv4.ip_forward=1'
+ notify:
+ - reload sysctl.conf
- name: Start and enable openvswitch service
systemd: