pre_tasks.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ---
  2. - name: "Set password fact"
  3. set_fact:
  4. rhsm_password: "{{ rhsm_password | default(None) }}"
  5. no_log: true
  6. - name: "Initialize Subscription Manager fact"
  7. set_fact:
  8. rhsm_register: true
  9. - name: "Determine if Subscription Manager should be used"
  10. set_fact:
  11. rhsm_register: false
  12. when:
  13. - rhsm_satellite is undefined or rhsm_satellite is none or rhsm_satellite|trim == ''
  14. - rhsm_username is undefined or rhsm_username is none or rhsm_username|trim == ''
  15. - rhsm_password is undefined or rhsm_password is none or rhsm_password|trim == ''
  16. - rhsm_org is undefined or rhsm_org is none or rhsm_org|trim == ''
  17. - rhsm_activationkey is undefined or rhsm_activationkey is none or rhsm_activationkey|trim == ''
  18. - rhsm_pool is undefined or rhsm_pool is none or rhsm_pool|trim == ''
  19. - name: "Validate Subscription Manager organization is set"
  20. fail: msg="Cannot register to a Satellite server without a value for the Organization via 'rhsm_org'"
  21. when:
  22. - rhsm_org is undefined or rhsm_org is none or rhsm_org|trim == ''
  23. - rhsm_satellite is defined
  24. - rhsm_satellite is not none
  25. - rhsm_satellite|trim != ''
  26. - rhsm_register
  27. - name: "Validate Subscription Manager authentication is defined"
  28. fail: msg="Cannot register without ('rhsm_username' and 'rhsm_password') or 'rhsm_activationkey' variables set. See the README.md for details on securely prompting for a password"
  29. when:
  30. - (rhsm_username is undefined or rhsm_username is none or rhsm_username|trim == '') or (rhsm_password is undefined or rhsm_password is none or rhsm_password|trim == '')
  31. - rhsm_activationkey is undefined or rhsm_activationkey is none or rhsm_activationkey|trim == ''
  32. - rhsm_register
  33. - name: "Validate activation key and Hosted are not requested together"
  34. fail: msg="Cannot register to RHSM Hosted with 'rhsm_activationkey'"
  35. when:
  36. - rhsm_satellite is undefined or rhsm_satellite is none or rhsm_satellite|trim == ''
  37. - rhsm_activationkey is defined
  38. - rhsm_activationkey is not none
  39. - rhsm_activationkey|trim != ''
  40. - rhsm_register