main.yml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. ---
  2. - name: "Initialize rhsm_password variable if vars_prompt was used"
  3. set_fact:
  4. rhsm_password: "{{ hostvars.localhost.rhsm_password }}"
  5. when:
  6. - rhsm_password is not defined or rhsm_password is none or rhsm_password|trim == ''
  7. - name: "Initializing Subscription Manager authentication method"
  8. set_fact:
  9. rhsm_authentication: false
  10. # 'rhsm_activationkey' will take precedence even if 'rhsm_username' and 'rhsm_password' are also set
  11. - name: "Setting Subscription Manager Activation Key Fact"
  12. set_fact:
  13. rhsm_authentication: "key"
  14. when:
  15. - rhsm_activationkey is defined
  16. - rhsm_activationkey is not none
  17. - rhsm_activationkey|trim != ''
  18. - not rhsm_authentication
  19. # If 'rhsm_username' and 'rhsm_password' are set but not 'rhsm_activationkey', set 'rhsm_authentication' to password
  20. - name: "Setting Subscription Manager Username and Password Fact"
  21. set_fact:
  22. rhsm_authentication: "password"
  23. when:
  24. - rhsm_username is defined
  25. - rhsm_username is not none
  26. - rhsm_username|trim != ''
  27. - rhsm_password is defined
  28. - rhsm_password is not none
  29. - rhsm_password|trim != ''
  30. - not rhsm_authentication
  31. - name: "Initializing registration status"
  32. set_fact:
  33. registered: false
  34. - name: "Checking subscription status (a failure means it is not registered and will be)"
  35. command: "/usr/bin/subscription-manager status"
  36. ignore_errors: yes
  37. changed_when: no
  38. register: check_if_registered
  39. - name: "Set registration fact if system is already registered"
  40. set_fact:
  41. registered: true
  42. when: check_if_registered.rc == 0
  43. - name: "Cleaning any old subscriptions"
  44. command: "/usr/bin/subscription-manager clean"
  45. when:
  46. - not registered
  47. - rhsm_authentication is defined
  48. register: cleaningsubs_result
  49. until: cleaningsubs_result.rc == 0
  50. retries: 10
  51. delay: 1
  52. - name: "Install Satellite certificate"
  53. command: "rpm -Uvh --force http://{{ rhsm_satellite }}/pub/katello-ca-consumer-latest.noarch.rpm"
  54. when:
  55. - not registered
  56. - rhsm_satellite is defined
  57. - rhsm_satellite is not none
  58. - rhsm_satellite|trim != ''
  59. - name: "Register to Satellite using activation key"
  60. command: "/usr/bin/subscription-manager register --activationkey={{ rhsm_activationkey }} --org='{{ rhsm_org }}'"
  61. when:
  62. - not registered
  63. - rhsm_authentication == 'key'
  64. - rhsm_satellite is defined
  65. - rhsm_satellite is not none
  66. - rhsm_satellite|trim != ''
  67. register: register_key_result
  68. until: register_key_result.rc == 0
  69. retries: 10
  70. delay: 1
  71. # This can apply to either Hosted or Satellite
  72. - name: "Register using username and password"
  73. command: "/usr/bin/subscription-manager register --username={{ rhsm_username }} --password={{ rhsm_password }}"
  74. no_log: true
  75. when:
  76. - not registered
  77. - rhsm_authentication == "password"
  78. - rhsm_org is not defined or rhsm_org is none or rhsm_org|trim == ''
  79. register: register_userpw_result
  80. until: register_userpw_result.rc == 0
  81. retries: 10
  82. delay: 1
  83. # This can apply to either Hosted or Satellite
  84. - name: "Register using username, password and organization"
  85. command: "/usr/bin/subscription-manager register --username={{ rhsm_username }} --password={{ rhsm_password }} --org={{ rhsm_org }}"
  86. no_log: true
  87. when:
  88. - not registered
  89. - rhsm_authentication == "password"
  90. - rhsm_org is defined
  91. - rhsm_org is not none
  92. - rhsm_org|trim != ''
  93. register: register_userpworg_result
  94. until: register_userpworg_result.rc == 0
  95. retries: 10
  96. delay: 1
  97. - name: "Auto-attach to Subscription Manager Pool"
  98. command: "/usr/bin/subscription-manager attach --auto"
  99. when:
  100. - not registered
  101. - rhsm_pool is undefined or rhsm_pool is none or rhsm_pool|trim == ''
  102. register: autoattach_result
  103. until: autoattach_result.rc == 0
  104. retries: 10
  105. delay: 1
  106. - name: "Attach to a specific pool"
  107. command: "/usr/bin/subscription-manager attach --pool={{ rhsm_pool }}"
  108. when:
  109. - rhsm_pool is defined
  110. - rhsm_pool is not none
  111. - rhsm_pool|trim != ''
  112. - not registered
  113. register: attachpool_result
  114. until: attachpool_result.rc == 0
  115. retries: 10
  116. delay: 1
  117. - name: "Disable all repositories"
  118. command: "/usr/bin/subscription-manager repos --disable=*"
  119. when:
  120. - not registered
  121. - rhsm_repos is defined
  122. - rhsm_repos is not none
  123. - rhsm_repos|trim != ''
  124. - name: "Enable specified repositories"
  125. command: "/usr/bin/subscription-manager repos --enable={{ item }}"
  126. with_items: "{{ rhsm_repos }}"
  127. when:
  128. - not registered
  129. - rhsm_repos is defined
  130. - rhsm_repos is not none
  131. - rhsm_repos|trim != ''
  132. register: enablerepos_result
  133. until: enablerepos_result.rc == 0
  134. retries: 10
  135. delay: 1