- name: Temporary provision /etc/hosts with Masters IP. lineinfile: dest="/etc/hosts" line="{{ ands_openshift_network | ipaddr(node_id) | ipaddr('address') }} {{ openshift_master_cluster_hostname }}" regexp=".*{{ openshift_master_cluster_hostname }}$" state="present" when: ('masters' not in group_names) vars: node_id: "{{ hostvars[groups['masters'][0]]['ands_host_id'] }}" - name: Check if keepalived is installed stat: path="/etc/sysconfig/keepalived" register: keepalived_result - name: Stop keepalived service: name=keepalived state=stopped when: - keepalived_result.stat.exists - ('masters' in group_names) or ('new_masters' in group_names)