main.yml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. ---
  2. - name: Determine if CoreOS
  3. raw: "grep '^NAME=' /etc/os-release | sed s'/NAME=//'"
  4. register: distro
  5. check_mode: no
  6. - name: Init the is_coreos fact
  7. set_fact:
  8. is_coreos: false
  9. - name: Set the is_coreos fact
  10. set_fact:
  11. is_coreos: true
  12. when: "'CoreOS' in distro.stdout"
  13. - name: Set docker config file directory
  14. set_fact:
  15. docker_config_dir: "/etc/sysconfig"
  16. - name: Override docker config file directory for Debian
  17. set_fact:
  18. docker_config_dir: "/etc/default"
  19. when: ansible_distribution == "Debian" or ansible_distribution == "Ubuntu"
  20. - name: Create config file directory
  21. file:
  22. path: "{{ docker_config_dir }}"
  23. state: directory
  24. - name: Set the bin directory path for CoreOS
  25. set_fact:
  26. bin_dir: "/opt/bin"
  27. when: is_coreos
  28. - name: Create the directory used to store binaries
  29. file:
  30. path: "{{ bin_dir }}"
  31. state: directory
  32. - name: Create Ansible temp directory
  33. file:
  34. path: "{{ ansible_temp_dir }}"
  35. state: directory
  36. - name: Determine if has rpm
  37. stat: path=/usr/bin/rpm
  38. register: s
  39. changed_when: false
  40. check_mode: no
  41. - name: Init the has_rpm fact
  42. set_fact:
  43. has_rpm: false
  44. - name: Set the has_rpm fact
  45. set_fact:
  46. has_rpm: true
  47. when: s.stat.exists
  48. - name: Init the has_firewalld fact
  49. set_fact:
  50. has_firewalld: false
  51. - name: Init the has_iptables fact
  52. set_fact:
  53. has_iptables: false
  54. # collect information about what packages are installed
  55. - include_tasks: rpm.yml
  56. when: has_rpm
  57. - include_tasks: fedora-install.yml
  58. when: not openshift_is_atomic and ansible_distribution == "Fedora"