summaryrefslogtreecommitdiffstats
path: root/roles/subscription-manager/tasks/main.yml
blob: 78ceaccd10fbbd3f84166b58f3e8727804cfee79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
---
- name: Initializing Subscription Manager authenticaiton method
  set_fact:
    rhsm_authentication: false

# 'rhsm_activationkey' will take precedence even if 'rhsm_username' and 'rhsm_password' are also set
- name: Setting Subscription Manager Activation Key Fact
  set_fact:
    rhsm_authentication: "key"
  when:
    - rhsm_activationkey is defined
    - rhsm_activationkey is not none
    - rhsm_activationkey|trim != ''
    - not rhsm_authentication

# If 'rhsm_username' and 'rhsm_password' are set but not 'rhsm_activationkey', set 'rhsm_authentication' to password
- name: Setting Subscription Manager Username and Password Fact
  set_fact:
    rhsm_authentication: "password"
  when:
    - rhsm_username is defined and rhsm_username is not none and rhsm_username|trim != ''
    - rhsm_password is defined and rhsm_password is not none and rhsm_password|trim != ''
    - not rhsm_authentication

- name: Initializing registration status
  set_fact:
    registered: false

- name: Checking subscription status (a failure means it is not registered and will be)
  command: "/usr/bin/subscription-manager status"
  ignore_errors: yes
  changed_when: no
  register: check_if_registered

- name: Set registration fact if system is already registered
  set_fact:
    registered: true
  when: check_if_registered.rc == 0

- name: Cleaning any old subscriptions
  command: "/usr/bin/subscription-manager clean"
  when:
    - not registered
    - rhsm_authentication is defined

- name: Install Satellite certificate
  command: "rpm -Uvh --force http://{{ rhsm_satellite }}/pub/katello-ca-consumer-latest.noarch.rpm"
  when:
    - not registered
    - rhsm_satellite is defined
    - rhsm_satellite is not none
    - rhsm_satellite|trim != ''

- name: Register to Satellite using activation key
  command: "/usr/bin/subscription-manager register --activationkey={{ rhsm_activationkey }} --org={{ rhsm_org }}"
  when:
    - not registered
    - rhsm_authentication == 'key'
    - rhsm_satellite is defined
    - rhsm_satellite is not none
    - rhsm_satellite|trim != ''

# This can apply to either Hosted or Satellite
- name: Register using username and password
  command: "/usr/bin/subscription-manager register --username={{ rhsm_username }} --password={{ rhsm_password }}"
  when:
    - not registered
    - rhsm_authentication != "key"

- name: Auto-attach to Subscription Manager Pool
  command: "/usr/bin/subscription-manager attach --auto"
  when:
    - not registered
    - rhsm_authentication != "key"

- name: Attach to a specific pool
  command: "/usr/bin/subscription-manager attach --pool={{ rhsm_pool }}"
  when:
    - rhsm_pool is defined and rhsm_pool is not none and rhsm_pool|trim != ''
    - and not registered
    - rhsm_authentication != "key"

- name: Disable all repositories
  command: "/usr/bin/subscription-manager repos --disable=*"
  when:
    - not registered
    - rhsm_repos is defined
    - rhsm_repos is not none
    - rhsm_repos|trim != ''

- name: Enable specified repositories
  command: "/usr/bin/subscription-manager repos --enable={{ item }}"
  with_items: rhsm_repos
  when:
    - not registered
    - rhsm_repos is defined
    - rhsm_repos is not none
    - rhsm_repos|trim != ''

- name: Cleaning yum repositories
  command: "yum clean all"