Fix some typos in parameter descriptions

Change-Id: I634698c222da7e5f570ac3bd2cdee924457791bd
This commit is contained in:
Rajesh Tailor 2022-06-17 16:37:38 +05:30
parent 3e6ddb70fc
commit 3b1ecbed5c
10 changed files with 11 additions and 11 deletions

View File

@ -250,7 +250,7 @@
# Defaults to undef # Defaults to undef
# #
# [*cert_file*] # [*cert_file*]
# (optinal) Certificate file to use when starting API server securely # (optional) Certificate file to use when starting API server securely
# Defaults to undef # Defaults to undef
# #
# [*key_file*] # [*key_file*]

View File

@ -70,7 +70,7 @@
# See https://docs.python.org/2/howto/logging.html # See https://docs.python.org/2/howto/logging.html
# #
# [*default_log_levels*] # [*default_log_levels*]
# (0ptional) Hash of logger (keys) and level (values) pairs. # (Optional) Hash of logger (keys) and level (values) pairs.
# Defaults to $::os_service_default # Defaults to $::os_service_default
# Example: # Example:
# { 'amqp' => 'WARN', 'amqplib' => 'WARN', 'boto' => 'WARN', # { 'amqp' => 'WARN', 'amqplib' => 'WARN', 'boto' => 'WARN',

View File

@ -2,7 +2,7 @@
# #
# This class is used to manage arbitrary barbican configurations. # This class is used to manage arbitrary barbican configurations.
# #
# examle xxx_config # example xxx_config
# (optional) Allow configuration of arbitrary barbican configurations. # (optional) Allow configuration of arbitrary barbican configurations.
# The value is an hash of barbican_config resources. Example: # The value is an hash of barbican_config resources. Example:
# { 'DEFAULT/foo' => { value => 'fooValue'}, # { 'DEFAULT/foo' => { value => 'fooValue'},

View File

@ -14,12 +14,12 @@
# Defaults to $::os_service_default # Defaults to $::os_service_default
# #
# [*disable_by_file_path*] # [*disable_by_file_path*]
# (Optional) Check the presense of a file to determine if an application # (Optional) Check the presence of a file to determine if an application
# is running on a port. # is running on a port.
# Defaults to $::os_service_default # Defaults to $::os_service_default
# #
# [*disable_by_file_paths*] # [*disable_by_file_paths*]
# (Optional) Check the presense of a file to determine if an application # (Optional) Check the presence of a file to determine if an application
# is running on a port. Expects a "port:path" list of strings. # is running on a port. Expects a "port:path" list of strings.
# Defaults to $::os_service_default # Defaults to $::os_service_default
# #

View File

@ -60,7 +60,7 @@
# Default to 'Key management Service' # Default to 'Key management Service'
# #
# [*public_url*] # [*public_url*]
# (0ptional) The endpoint's public url. # (Optional) The endpoint's public url.
# This url should *not* contain any trailing '/'. # This url should *not* contain any trailing '/'.
# Defaults to 'http://127.0.0.1:9311'. # Defaults to 'http://127.0.0.1:9311'.
# #

View File

@ -5,7 +5,7 @@
# === Parameters # === Parameters
# #
# [*simple_crypto_plugin_kek*] # [*simple_crypto_plugin_kek*]
# (optional) Key encryption key to be used by Simple Crypto Pluging. # (optional) Key encryption key to be used by Simple Crypto Plugin.
# Defaults to $::os_service_default # Defaults to $::os_service_default
# #
# [*global_default*] # [*global_default*]

View File

@ -24,7 +24,7 @@ class barbican::retry_scheduler (
'retry_scheduler/periodic_interval_max_seconds': value => $periodic_interval_max_seconds; 'retry_scheduler/periodic_interval_max_seconds': value => $periodic_interval_max_seconds;
} }
# TODO(tkajinam): Currently NO DISTRO provides the pachage to install # TODO(tkajinam): Currently NO DISTRO provides the package to install
# the retry daemon service. Once that is fixed, install # the retry daemon service. Once that is fixed, install
# a separate package and enable the service. # a separate package and enable the service.
} }

View File

@ -86,7 +86,7 @@
# Optional. Defaults to undef. # Optional. Defaults to undef.
# #
# [*custom_wsgi_process_options*] # [*custom_wsgi_process_options*]
# (optional) gives you the oportunity to add custom process options or to # (optional) gives you the opportunity to add custom process options or to
# overwrite the default options for the WSGI main process. # overwrite the default options for the WSGI main process.
# eg. to use a virtual python environment for the WSGI process # eg. to use a virtual python environment for the WSGI process
# you could set it to: # you could set it to:

View File

@ -66,7 +66,7 @@ describe 'barbican::keystone::notification' do
.with_value(param_hash[:keystone_notification_control_exchange]) .with_value(param_hash[:keystone_notification_control_exchange])
end end
it 'installs the keystone listner package' do it 'installs the keystone listener package' do
is_expected.to contain_package('barbican-keystone-listener').with( is_expected.to contain_package('barbican-keystone-listener').with(
:ensure => 'present', :ensure => 'present',
:name => platform_params[:keystone_listener_package_name], :name => platform_params[:keystone_listener_package_name],

View File

@ -20,7 +20,7 @@
# these tests are a little concerning b/c they are hacking around the # these tests are a little concerning b/c they are hacking around the
# modulepath, so these tests will not catch issues that may eventually arise # modulepath, so these tests will not catch issues that may eventually arise
# related to loading these plugins. # related to loading these plugins.
# I could not, for the life of me, figure out how to programatcally set the modulepath # I could not, for the life of me, figure out how to programmatically set the modulepath
require 'spec_helper' require 'spec_helper'
provider_class = Puppet::Type.type(:barbican_config).provider(:openstackconfig) provider_class = Puppet::Type.type(:barbican_config).provider(:openstackconfig)
describe provider_class do describe provider_class do