diff --git a/manifests/backends.pp b/manifests/backends.pp index fffcbe55..841cc588 100644 --- a/manifests/backends.pp +++ b/manifests/backends.pp @@ -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, ','); } diff --git a/manifests/compute/nova.pp b/manifests/compute/nova.pp index 5fe95363..909b8200 100644 --- a/manifests/compute/nova.pp +++ b/manifests/compute/nova.pp @@ -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*] diff --git a/manifests/init.pp b/manifests/init.pp index ee8f2bf1..34c1a816 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -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 ( diff --git a/spec/classes/manila_logging_spec.rb b/spec/classes/manila_logging_spec.rb index f26b968c..a0102e4e 100644 --- a/spec/classes/manila_logging_spec.rb +++ b/spec/classes/manila_logging_spec.rb @@ -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 => '') is_expected.to contain_manila_config('DEFAULT/use_stderr').with(:value => '') 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')