Преглед на файлове

Add org parameter to Satellite with user/pass

Vinny Valdez преди 9 години
родител
ревизия
305140bfae
променени са 1 файла, в които са добавени 12 реда и са изтрити 0 реда
  1. 12 0
      roles/subscription-manager/tasks/main.yml

+ 12 - 0
roles/subscription-manager/tasks/main.yml

@@ -77,6 +77,18 @@
   when:
     - not registered
     - rhsm_authentication == "password"
+    - rhsm_org is not defined or rhsm_org is none or rhsm_org|trim == ''
+
+# This can apply to either Hosted or Satellite
+- name: "Register using username, password and organization"
+  command: "/usr/bin/subscription-manager register --username={{ rhsm_username }} --password={{ rhsm_password }} --org={{ rhsm_org }}"
+  no_log: true
+  when:
+    - not registered
+    - rhsm_authentication == "password"
+    - rhsm_org is defined
+    - rhsm_org is not none
+    - rhsm_org|trim != ''
 
 - name: "Auto-attach to Subscription Manager Pool"
   command: "/usr/bin/subscription-manager attach --auto"