Project

Profile

Help

Issue #5518

Updated by mdepaulo@redhat.com over 4 years ago

Normally pulp-rpm-prerequisites gets run with a static import like: 
 section of playbook: "roles:" role: 
 Task in playbook/role: "import_role:" import_role: 

 But if it gets run via a dynamic include like: 
 - include_role: 
     name: "{{ item }}" 
   with_items: 
     - pulp.pulp_rpm_prerequisites 
     - pulp-database 
     - pulp-workers 
     - pulp-resource-manager 
     - pulp-content 

 It fails because it references the variable prereq_pip_packages, which has not been included from the "pulp"role (dependency of later roles) yet.

Back