Fix typos

This patch fixes several typos.

TrivialFix

Change-Id: I924aac9c56e842bf447d28f45a9ac5bdcf8b870a
This commit is contained in:
daiki kato 2016-03-18 11:59:40 +09:00
parent b4d83004c5
commit 91167074be
4 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ class manila::backends (
$enabled_share_backends = undef
) {
# Maybe this could be extented to dynamicly find the enabled names
# Maybe this could be extended to dynamically find the enabled names
manila_config {
'DEFAULT/enabled_share_backends': value => join($enabled_share_backends, ',');
}

View File

@ -16,7 +16,7 @@
# (optional) region name of this node
#
# [*nova_ca_certificates_file*]
# (optional) Location of ca certicates file to use for nova client
# (optional) Location of ca certificates file to use for nova client
# requests.
#
# [*nova_api_insecure*]

View File

@ -266,7 +266,7 @@
# Defaults to undef.
#
# [*qpid_sasl_mechanisms*]
# (Optional) ENable one or more SASL mechanisms.
# (Optional) Enable one or more SASL mechanisms.
# Defaults to undef.
#
class manila (

View File

@ -56,7 +56,7 @@ describe 'manila::logging' do
end
shared_examples 'basic default logging settings' do
it 'configures manila logging settins with default values' do
it 'configures manila logging settings with default values' do
is_expected.to contain_manila_config('DEFAULT/use_syslog').with(:value => '<SERVICE DEFAULT>')
is_expected.to contain_manila_config('DEFAULT/use_stderr').with(:value => '<SERVICE DEFAULT>')
is_expected.to contain_manila_config('DEFAULT/log_dir').with(:value => '/var/log/manila')
@ -66,7 +66,7 @@ describe 'manila::logging' do
end
shared_examples 'basic non-default logging settings' do
it 'configures manila logging settins with non-default values' do
it 'configures manila logging settings with non-default values' do
is_expected.to contain_manila_config('DEFAULT/use_syslog').with(:value => 'true')
is_expected.to contain_manila_config('DEFAULT/use_stderr').with(:value => 'false')
is_expected.to contain_manila_config('DEFAULT/syslog_log_facility').with(:value => 'LOG_FOO')