redhat-subscription causing issues?

834 views
Skip to first unread message

Adam Morris

unread,
Apr 4, 2016, 6:36:58 PM4/4/16
to Ansible Project
Greetings,

I have been using Ansible for a while now and one of my playbooks for configuring servers includes this...

- name: Register a Redhat system (>= RHEL 6)
  redhat_subscription: state=present username=<redacted> password=<redacted>
                         pool='\ARedHat Enterprise Server\Z' autosubscribe=true
  when: ansible_distribution == "RedHat" and ansible_distribution_version >= "6.0"

- name: make sure yum-utils is installed
  raw: yum -y install yum-utils
  when: ansible_os_family == "RedHat"

This was working perfectly, but recently I have been getting errors like this...

TASK [common : Register a Redhat system (>= RHEL 6)] ***************************

ok: [u90324]

  

TASK [common : make sure yum-utils is installed] *******************************

fatal: [u90324]: FAILED! => {"changed": false, "failed": true, "rc": 1, "stderr": "", "stdout": "Loaded plugins: langpacks, product-id, subscription-manager\r\nThis system is registered to Red Hat Subscription Management, but is not receiving updates. You can use subscription-manager to assign subscriptions.\r\nThere are no enabled repos.\r\n Run \"yum repolist all\" to see the repos you have.\r\n You can enable repos with yum-config-manager --enable <repo>\r\n", "stdout_lines": ["Loaded plugins: langpacks, product-id, subscription-manager", "This system is registered to Red Hat Subscription Management, but is not receiving updates. You can use subscription-manager to assign subscriptions.", "There are no enabled repos.", " Run \"yum repolist all\" to see the repos you have.", " You can enable repos with yum-config-manager --enable <repo>"]}


I think that this might be an issue with subscription manager rather than Ansible,  but has anyone else seen this or is this just my problem?  I am wondering whether RedHat has broken auto-attach...  Probably time to break out the VM and test this all again.


Thanks,


Adam

ali...@redhat.com

unread,
Apr 5, 2016, 6:08:54 PM4/5/16
to Ansible Project

It does sound like the system isn't attached to any subscription pools, which likely means
auto-attach failed (or possibly, if it was working before, that a subscription expired).

/var/log/rhsm/rhsm.log on that system should indicate if there was a failure. Also just
checking 'subscription-manager list' or 'subscription-manager repos --list-enabled' to
see if it's registered but not attached ('subscribed') or if it's registered+subscribed but
missing applicable repos.

Oh, and if that's a direct cut of the playbook, the pool name may be wrong
[ 'RedHat Enterprise Server' vs 'Red Hat Enterprise Linux Server' etc)

Adam Morris

unread,
Apr 5, 2016, 7:43:37 PM4/5/16
to Ansible Project

You sir, are a Genius... 

Your employer however irks me....

Yes, that was an exact excerpt from the playbook.  And yes, the pool name was wrong.  But the playbook USED to work and I got that pool name from Red Hat Subscription Manager a while back.  Not only that, but that pool name is used in the examples in the Ansible documentation (proof to me that I wasn't imagining it)... So I suspect that at some point in the last month or so Red Hat changed the name of the pool.  (Or fixed it so that the wrong name would no longer work).

Anyway...

Thank you for your assistance.

Adam

Greg DeKoenigsberg

unread,
Apr 5, 2016, 8:22:57 PM4/5/16
to Ansible Project

Do we need to change the module docs?

--
You received this message because you are subscribed to the Google Groups "Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ansible-proje...@googlegroups.com.
To post to this group, send email to ansible...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/80ec9610-9d1b-46cc-990d-9cd6ef4020d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Adam Morris

unread,
Apr 5, 2016, 8:37:23 PM4/5/16
to ansible...@googlegroups.com

Greg,
It wouldn't hurt to fix them, it might be better to also add a comment "Pool ids shown are examples.  Available pools can be seen with the following command."

Should I go do that and submit a pull request?

Adam

You received this message because you are subscribed to a topic in the Google Groups "Ansible Project" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ansible-project/3BS4BpVpf7I/unsubscribe.
To unsubscribe from this group and all its topics, send an email to ansible-proje...@googlegroups.com.

To post to this group, send email to ansible...@googlegroups.com.

Greg DeKoenigsberg

unread,
Apr 5, 2016, 8:40:14 PM4/5/16
to Ansible Project

That would be great. Ping me in the pr (@gregdek).

Adrian Likins

unread,
Apr 6, 2016, 12:58:49 PM4/6/16
to ansible...@googlegroups.com
inline...

> From: "Adam Morris" <zwac...@gmail.com>
> Subject: Re: [ansible-project] Re: redhat-subscription causing issues?

> Greg,
> It wouldn't hurt to fix them, it might be better to also add a comment "Pool
> ids shown are examples. Available pools can be seen with the following
> command."

<Red Hat Subscription Manager pedantry follows>

The examples currently shown in the docs aren't actually pool ids, just regexes
to match against either the product name or subscription name associated with a
pool. The plugin uses that to find a pool id (something like '8a99f984514f448401515a0392042528').

Pools and pool ids are kind of a weird concept though, since they are unique globally
(and potentially N:N with subscriptions and orders). It allows a fine level of
granularity and flexibility when attaching pools. But unfortunately pool ids
are almost never useful for DWIM scenarios, hence the redhat_subscriptions modules
code for regex matching on the names (and subman's list --match= options). Auto
attach will generally DWIM, except when it doesn't, which isn't particular idempotent.
[current module does take lengths to preserve existing state though...]

</>

I see a couple of minor oddities in the module now. I'll get an issue in about it.

Reply all
Reply to author
Forward
0 new messages