Hide Forgot
== Description of problem: Reported by pmyers at 4.0 release. (a similar bug has been created for ICG) In section "2.1.2.4 Red Hat OpenStack Repository Configuration", steps 5 and 6 should be swapped, because yum-plugin-priorities is only available in RHEL OSP repos: step "5. Install the yum-plugin-priorities package. The yum-plugin-priorities package provides a yum plug-in allowing configuration of per-repository priorities. " should come AFTER: step "6. Use the yum-config-manager command to set the priority of the Red Hat Enterprise Linux OpenStack Platform software repository to 1. This is the ..." == Version-Release number of selected component (if applicable): RC == Actual results: Install the yum-plugin-priorities comes before yum-config-manager --enable REPO_NAME command. == Expected results: Install the yum-plugin-priorities should come AFTER yum-config-manager --enable REPO_NAME command.
Actually, steps in comment 0 are wrong. The 2 existing steps in comment 0 should be split into 3: In section "2.1.2.4 Red Hat OpenStack Repository Configuration", steps 5 and 6 should be rewritten as 3 steps, because yum-plugin-priorities is only available in RHEL OSP repos, so setting the OPT priority to 1 has to be done after installing yum-plugin-priorities: Order of steps should be: yum-config-manager --enable rhel-6-server-openstack-4.0-rpms yum install -y yum-plugin-priorities yum-config-manager --enable rhel-6-server-openstack-4.0-rpms --setopt="rhel-6-server-openstack-4.0-rpms.priority=1" [11:49] <pmyers> if you try to do the 3rd command in that sequence first, it won't work properly because you're asking to set an opt that doesn't exist until after you install y-p-p == Version-Release number of selected component (if applicable): RC == Actual results: Install the yum-plugin-priorities comes before yum-config-manager --enable REPO_NAME command. == Expected results: additional step to first enable rhel-6-server-openstack-4.0-rpms, then install the yum-plugin-priorities, then "yum-config-manager --enable rhel-6-server-openstack-4.0-rpms --setopt..." command
Added extra step (now step 5) before "yum install -y yum-plugin-priorities" as per comment 2.
Still needs tech review and QA, moving to A2.