main.yml 1.0 KB

1234567891011121314151617181920212223242526272829
  1. ---
  2. # TODO: Enhance redhat_subscription module
  3. # to make it able to attach to a pool
  4. # to make it able to enable repositories
  5. - set_fact:
  6. rhel_subscription_user: "{{ lookup('oo_option', 'rhel_subscription_user') | default(rhsub_user, True) | default(omit, True) }}"
  7. rhel_subscription_pass: "{{ lookup('oo_option', 'rhel_subscription_pass') | default(rhsub_pass, True) | default(omit, True) }}"
  8. - fail:
  9. msg: "This role is only supported for Red Hat hosts"
  10. when: ansible_distribution != 'RedHat'
  11. - fail:
  12. msg: Either rsub_user or the rhel_subscription_user env variable are required for this role.
  13. when: rhel_subscription_user is not defined
  14. - fail:
  15. msg: Either rsub_pass or the rhel_subscription_pass env variable are required for this role.
  16. when: rhel_subscription_pass is not defined
  17. - name: RedHat subscriptions
  18. redhat_subscription:
  19. username: "{{ rhel_subscription_user }}"
  20. password: "{{ rhel_subscription_pass }}"
  21. autosubscribe: yes
  22. - include: enterprise.yml
  23. when: deployment_type == 'enterprise'