main.yml 1.3 KB

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