main.yml 1.8 KB

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