You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
494 B

  1. ---
  2. - name: Download Oracle Linux public yum repo
  3. get_url:
  4. url: https://yum.oracle.com/public-yum-ol7.repo
  5. dest: /etc/yum.repos.d/public-yum-ol7.repo
  6. - name: Enable Oracle Linux repo
  7. ini_file:
  8. dest: /etc/yum.repos.d/public-yum-ol7.repo
  9. section: "{{ item }}"
  10. option: enabled
  11. value: "1"
  12. with_items:
  13. - ol7_latest
  14. - ol7_addons
  15. - ol7_developer_EPEL
  16. - name: Install packages requirements for bootstrap
  17. yum:
  18. name: container-selinux
  19. state: present