Update typos

Change-Id: Id44ff95e32fa80aef8ec5a786d327fca7ac78c62
This commit is contained in:
Swapnil Kulkarni (coolsvap) 2016-01-04 14:51:22 +05:30
parent 38a2102f85
commit 25905128a0
5 changed files with 7 additions and 7 deletions

View File

@ -4,7 +4,7 @@
# The new interface does not rely on a unique title scheme and offers # The new interface does not rely on a unique title scheme and offers
# the possibility to pass required arguments as parameters. Old # the possibility to pass required arguments as parameters. Old
# interface with everything defined in the title is still supported, # interface with everything defined in the title is still supported,
# but the parsing is more consistant and less error prone (on the # but the parsing is more consistent and less error prone (on the
# coding side). Puppet will find matching resource irrespective of # coding side). Puppet will find matching resource irrespective of
# how you create it. # how you create it.
@ -26,7 +26,7 @@ keystone_user { 'user_one::domain_two':
# will create the user in the domain_one, not domain_two. # will create the user in the domain_one, not domain_two.
# This lead to the meaningless title feature. This can be helpful for # This led to the meaningless title feature. This can be helpful for
# manifest/hiera created by another program for instance, where the # manifest/hiera created by another program for instance, where the
# title could be some random id: # title could be some random id:

View File

@ -1,7 +1,7 @@
# The keystone::db::mysql class implements mysql backend for keystone # The keystone::db::mysql class implements mysql backend for keystone
# #
# This class can be used to create tables, users and grant # This class can be used to create tables, users and grant
# privelege for a mysql keystone database. # privilege for a mysql keystone database.
# #
# == parameters # == parameters
# #

View File

@ -19,7 +19,7 @@
# Note: The external value should be dropped to avoid problems. # Note: The external value should be dropped to avoid problems.
# #
# [*module_plugin*] # [*module_plugin*]
# The plugin for authentication acording to the choice made with protocol and # The plugin for authentication according to the choice made with protocol and
# module. # module.
# (Optional) Defaults to 'keystone.auth.plugins.mapped.Mapped' (string value) # (Optional) Defaults to 'keystone.auth.plugins.mapped.Mapped' (string value)
# #
@ -54,7 +54,7 @@
# #
# == Note about Redhat osfamily # == Note about Redhat osfamily
# According to puppet-apache we need to enable a new repo, but in puppet-openstack # According to puppet-apache we need to enable a new repo, but in puppet-openstack
# we won't enable any exteral third party repo. # we won't enable any external third party repo.
# http://wiki.aaf.edu.au/tech-info/sp-install-guide. We provide some helpers but # http://wiki.aaf.edu.au/tech-info/sp-install-guide. We provide some helpers but
# as the packaging is lacking official support, we cannot guaranty it will work. # as the packaging is lacking official support, we cannot guaranty it will work.
# #

View File

@ -118,7 +118,7 @@
# [*cache_memcache_servers*] # [*cache_memcache_servers*]
# (optional) List of memcache servers to be used with the caching backend to # (optional) List of memcache servers to be used with the caching backend to
# configure cache/memcache_servers. # configure cache/memcache_servers.
# Specified as as a comma separated string of 'server:port,server:port' or an # Specified as a comma separated string of 'server:port,server:port' or an
# array of servers ['server:port', 'server:port']. # array of servers ['server:port', 'server:port'].
# By default this will be set to the memcache_servers if that is configured # By default this will be set to the memcache_servers if that is configured
# and this is left unconfigured. # and this is left unconfigured.

View File

@ -672,7 +672,7 @@ class keystone::ldap(
# check for some common driver name mistakes # check for some common driver name mistakes
if ($assignment_driver != undef) { if ($assignment_driver != undef) {
if ! ($assignment_driver =~ /^keystone.assignment.backends.*Assignment$/) { if ! ($assignment_driver =~ /^keystone.assignment.backends.*Assignment$/) {
fail('assigment driver should be of the form \'keystone.assignment.backends.*Assignment\'') fail('assignment driver should be of the form \'keystone.assignment.backends.*Assignment\'')
} }
} }