From ebc69a06ba0b19f8785537b3ce4cee228b23ea86 Mon Sep 17 00:00:00 2001 From: Rajesh Tailor Date: Mon, 15 May 2017 12:50:34 +0530 Subject: [PATCH] Trivial-Fix: Fix typos Change-Id: I227375cd6cd1eef44efc986d56b5e688bc98fbc8 --- lib/puppet/type/nova_flavor.rb | 2 +- manifests/api.pp | 2 +- manifests/compute/rbd.pp | 2 +- manifests/deps.pp | 6 +++--- manifests/generic_service.pp | 2 +- manifests/migration/libvirt.pp | 2 +- manifests/scheduler/filter.pp | 6 +++--- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/lib/puppet/type/nova_flavor.rb b/lib/puppet/type/nova_flavor.rb index 2314ce0ed..75b7ab866 100644 --- a/lib/puppet/type/nova_flavor.rb +++ b/lib/puppet/type/nova_flavor.rb @@ -96,7 +96,7 @@ Puppet::Type.newtype(:nova_flavor) do end newparam(:rxtx_factor) do - desc 'The slice of bandiwdth that the instances with this flavor can use (through the Virtual Interface (vif) creation in the hypervisor)' + desc 'The slice of bandwidth that the instances with this flavor can use (through the Virtual Interface (vif) creation in the hypervisor)' end newparam(:is_public) do diff --git a/manifests/api.pp b/manifests/api.pp index 9b09748d6..c3fc1be59 100644 --- a/manifests/api.pp +++ b/manifests/api.pp @@ -545,7 +545,7 @@ as a standalone service, or httpd for being run by a httpd server") $aur = $::nova::keystone::authtoken::username #Admin password real $apr = $::nova::keystone::authtoken::password - #Admin tenan name real + #Admin tenant name real $atnr = $::nova::keystone::authtoken::project_name #Keystone Auth URI $kau = $::nova::keystone::authtoken::auth_uri diff --git a/manifests/compute/rbd.pp b/manifests/compute/rbd.pp index 82cb3f321..886309833 100644 --- a/manifests/compute/rbd.pp +++ b/manifests/compute/rbd.pp @@ -1,5 +1,5 @@ # -# Copyright (C) 2014 OpenStack Fondation +# Copyright (C) 2014 OpenStack Foundation # # Author: Emilien Macchi # Donald Talton diff --git a/manifests/deps.pp b/manifests/deps.pp index 64b66253c..796aee1ad 100644 --- a/manifests/deps.pp +++ b/manifests/deps.pp @@ -22,7 +22,7 @@ class nova::deps { ~> Service<| tag == 'nova-service' |> ~> anchor { 'nova::service::end': } - # paste-api.ini config shold occur in the config block also. + # paste-api.ini config should occur in the config block also. Anchor['nova::config::begin'] -> Nova_paste_api_ini<||> ~> Anchor['nova::config::end'] @@ -30,7 +30,7 @@ class nova::deps { # Support packages need to be installed in the install phase, but we don't # put them in the chain above because we don't want any false dependencies # between packages with the nova-package tag and the nova-support-package - # tag. Note: the package resources here will have a 'before' relationshop on + # tag. Note: the package resources here will have a 'before' relationship on # the nova::install::end anchor. The line between nova-support-package and # nova-package should be whether or not Nova services would need to be # restarted if the package state was changed. @@ -41,7 +41,7 @@ class nova::deps { # TODO(aschultz): check if we can remove these as I think they are no longer # valid since nova_cells is replaced by cell_v2 and the others are part of # nova network - # The following resourcs are managed by calling 'nova manage' and so the + # The following resources are managed by calling 'nova manage' and so the # database must be provisioned before they can be applied. Anchor['nova::dbsync_api::end'] -> Nova_cells<||> diff --git a/manifests/generic_service.pp b/manifests/generic_service.pp index 1893ecb11..0f3e37d1e 100644 --- a/manifests/generic_service.pp +++ b/manifests/generic_service.pp @@ -27,7 +27,7 @@ # Defaults to true. # # [*ensure_package*] -# (optional) Control the ensure parameter for the package ressource. +# (optional) Control the ensure parameter for the package resource. # Defaults to 'present'. # define nova::generic_service( diff --git a/manifests/migration/libvirt.pp b/manifests/migration/libvirt.pp index cb0c768d9..5abde6520 100644 --- a/manifests/migration/libvirt.pp +++ b/manifests/migration/libvirt.pp @@ -147,7 +147,7 @@ class nova::migration::libvirt( if $client_extraparams != {} { $extra_params_before_python_escape = join(uriescape(join_keys_to_values($client_extraparams, '=')), '&') - # Must escape % as nova interprets it incorrecly. + # Must escape % as nova interprets it incorrectly. $extra_params = sprintf('?%s', regsubst($extra_params_before_python_escape, '%', '%%', 'G')) } else { $extra_params ='' diff --git a/manifests/scheduler/filter.pp b/manifests/scheduler/filter.pp index 7b7f60ab4..38d7ff2cb 100644 --- a/manifests/scheduler/filter.pp +++ b/manifests/scheduler/filter.pp @@ -65,17 +65,17 @@ # Defaults to $::os_service_default # # [*ram_weight_multiplier*] -# (optional) Ram weight multipler ratio. This option determines how hosts +# (optional) Ram weight multiplier ratio. This option determines how hosts # with more or less available RAM are weighed. # Defaults to $::os_service_default # # [*disk_weight_multiplier*] -# (optional) Disk weight multipler ratio. Multiplier used for weighing free +# (optional) Disk weight multiplier ratio. Multiplier used for weighing free # disk space. Negative numbers mean to stack vs spread. # Defaults to $::os_service_default # # [*io_ops_weight_multiplier*] -# (optional) IO operations weight multipler ratio. This option determines +# (optional) IO operations weight multiplier ratio. This option determines # how hosts with differing workloads are weighed # Defaults to $::os_service_default #