diff options
author | Andrew Butcher <abutcher@redhat.com> | 2016-03-31 13:44:11 -0400 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2016-03-31 13:57:22 -0400 |
commit | 924f8c2b8fac6faefbd93bf37d219adc2f1ac656 (patch) | |
tree | 210d0a4003e28e17044f789d5133dab4fc6fa0a0 /roles/rhel_subscribe | |
parent | f7a9a0ce7a5057a25cea7e9f66576101a9e9f43a (diff) | |
download | openshift-924f8c2b8fac6faefbd93bf37d219adc2f1ac656.tar.gz openshift-924f8c2b8fac6faefbd93bf37d219adc2f1ac656.tar.bz2 openshift-924f8c2b8fac6faefbd93bf37d219adc2f1ac656.tar.xz openshift-924f8c2b8fac6faefbd93bf37d219adc2f1ac656.zip |
Check consumed pools prior to attaching.
Diffstat (limited to 'roles/rhel_subscribe')
-rw-r--r-- | roles/rhel_subscribe/tasks/main.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/roles/rhel_subscribe/tasks/main.yml b/roles/rhel_subscribe/tasks/main.yml index 85e17ff9d..343020dce 100644 --- a/roles/rhel_subscribe/tasks/main.yml +++ b/roles/rhel_subscribe/tasks/main.yml @@ -37,8 +37,19 @@ register: openshift_pool_id changed_when: False +- name: Determine if OpenShift Pool Already Attached + command: subscription-manager list --consumed --matches="{{ rhel_subscription_pool }}" --pool-only + register: openshift_pool_attached + changed_when: False + when: openshift_pool_id.stdout == '' + +- fail: + msg: "Unable to find pool matching {{ rhel_subscription_pool }} in available or consumed pools" + when: openshift_pool_id.stdout == '' and openshift_pool_attached is defined and openshift_pool_attached.stdout == '' + - name: Attach to OpenShift Pool command: subscription-manager subscribe --pool {{ openshift_pool_id.stdout_lines[0] }} + when: openshift_pool_id.stdout != '' - include: enterprise.yml when: deployment_type in [ 'enterprise', 'atomic-enterprise', 'openshift-enterprise' ] and |