Fix misspellings in diskimage-builder

Fix misspellings detected by:
* pip install misspellings
* git ls-files | grep -v locale | misspellings -f -

Change-Id: I42acbcce7611ff3e2e120168acccc518299c2c42
Closes-Bug: #1257295
This commit is contained in:
Shane Wang 2014-02-07 14:42:04 +08:00
parent 5964fec479
commit 4aeee175d8
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
## Red Hat Subscription Manager (RHSM)
Certificate-based Red Hat Subscription Managment (RHSM) is the default registration type.
Certificate-based Red Hat Subscription Management (RHSM) is the default registration type.
* Set DIB_RHSM_USER and DIB_RHSM_PASSWORD to register the system with RHSM during the image building process. This will apply the associated Red Hat Enterprise Linux Server subscription so the latest package updates can be applied. At the end of the image building process, the system will be unregistered from RHSM.
* Set DIB_RHSM_POOL to a subscription pool if you do not want the system to use the `--auto-attach` feature of `subscription-manager`.

View File

@ -14,7 +14,7 @@ function get_repos_for_element(){
while read line ; do
# ignore blank lines and lines begining in '#'
# ignore blank lines and lines beginning in '#'
[[ "$line" == \#* ]] || [[ -z "$line" ]] && continue
if [[ "$line" =~ $REGEX ]] ; then