add-rhn-pools.yml 331 B

12345678910111213
  1. ---
  2. - hosts: cluster_hosts
  3. vars:
  4. rhn_pools: []
  5. tasks:
  6. - name: Attach additional RHN pools
  7. become: true
  8. with_items: "{{ rhn_pools }}"
  9. command: "/usr/bin/subscription-manager attach --pool={{ item }}"
  10. register: attach_rhn_pools_result
  11. until: attach_rhn_pools_result.rc == 0
  12. retries: 10
  13. delay: 1