main.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. - name: Install Bind
  2. action: "{{ ansible_pkg_mgr }} name=bind"
  3. when: not openshift.common.is_containerized | bool
  4. - name: Create docker build dir
  5. file: path=/tmp/dockerbuild state=directory
  6. when: openshift.common.is_containerized | bool
  7. - name: Install dockerfile
  8. template:
  9. dest: "/tmp/dockerbuild/Dockerfile"
  10. src: Dockerfile
  11. register: install_result
  12. when: openshift.common.is_containerized | bool
  13. - name: Build Bind image
  14. docker_image: path="/tmp/dockerbuild" name="bind" state=present
  15. when: openshift.common.is_containerized | bool
  16. - name: Install bind service file
  17. template:
  18. dest: "/etc/systemd/system/named.service"
  19. src: named.service.j2
  20. register: install_result
  21. when: openshift.common.is_containerized | bool
  22. - name: reload systemd
  23. command: /usr/bin/systemctl --system daemon-reload
  24. when: openshift.common.is_containerized | bool and install_result | changed
  25. - name: Create bind zone dir
  26. file: path=/var/named state=directory
  27. when: openshift.common.is_containerized | bool
  28. - name: Configure Bind
  29. template:
  30. src: "{{ item.src }}"
  31. dest: "{{ item.dest }}"
  32. with_items:
  33. - src: openshift-cluster.zone
  34. dest: /var/named/openshift-cluster.zone
  35. - src: named.conf
  36. dest: /etc/named.conf
  37. notify: restart bind
  38. - name: Enable Bind
  39. service:
  40. name: named
  41. state: started
  42. enabled: yes