Merge "Fix repo enablement for RHEL during registration"

This commit is contained in:
Jenkins 2015-01-09 15:17:43 +00:00 committed by Gerrit Code Review
commit e304882e9d
3 changed files with 8 additions and 8 deletions

View File

@ -81,8 +81,8 @@ It will change over time as new releases come out. There are also variants
#### REG\_REPOS
A single string representing a list of repository names separated by a
space. Each of the repositories in this string are enabled through
subscription manager. Once you've attached a subscription, you can
comma (No spaces). Each of the repositories in this string are enabled
through subscription manager. Once you've attached a subscription, you can
find available repositories by running subscription-manager repos --list.
#### REG\_SERVER\_URL
@ -119,7 +119,7 @@ REG_METHOD=satellite
To register with the Red Hat Customer Portal, a common example would be to
set the following variables:
REG_REPOS='rhel-7-server-optional-rpms rhel-7-server-extras-rpms'
REG_REPOS='rhel-7-server-optional-rpms,rhel-7-server-extras-rpms'
REG_AUTO_ATTACH=true
REG_USER='tripleo'
REG_PASSWORD='tripleo'
@ -165,8 +165,8 @@ Heat metadata can be used to configure the rhel-common element.
# minor release version. This is only used with the auto_attach
# option.
repos:
# A single string representing a list of repository names separated
# by a space. Each of the repositories in this string are enabled
# A single string representing a list of repository names separated by a
# comma (No spaces). Each of the repositories in this string are enabled
# through subscription manager.
satellite_url:
# The url of the Satellite instance to register with. Required for
@ -214,7 +214,7 @@ use the following metadata:
{
"rh_registration":{
"repos":"rhel-7-server-optional-rpms rhel-7-server-extras-rpms",
"repos":"rhel-7-server-optional-rpms,rhel-7-server-extras-rpms",
"auto_attach":true,
"user":"tripleo",
"password":"tripleo",

View File

@ -89,7 +89,7 @@ if [ -n "${REG_ORG:-}" ]; then
fi
if [ -n "${REG_REPOS:-}" ]; then
for repo in $REG_REPOS; do
for repo in $(echo $REG_REPOS | tr ',' '\n'); do
repos="$repos --enable $repo"
done
fi

View File

@ -72,7 +72,7 @@ if [ -n "${REG_ORG:-}" ]; then
fi
if [ -n "${REG_REPOS:-}" ]; then
for repo in $REG_REPOS; do
for repo in $(echo $REG_REPOS | tr ',' '\n'); do
repos="$repos --enable $repo"
done
fi