Trivial-Fix: Fix typos

Change-Id: I227375cd6cd1eef44efc986d56b5e688bc98fbc8
This commit is contained in:
Rajesh Tailor 2017-05-15 12:50:34 +05:30
parent 2125355d28
commit ebc69a06ba
7 changed files with 11 additions and 11 deletions

View File

@ -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

View File

@ -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

View File

@ -1,5 +1,5 @@
#
# Copyright (C) 2014 OpenStack Fondation
# Copyright (C) 2014 OpenStack Foundation
#
# Author: Emilien Macchi <emilien.macchi@enovance.com>
# Donald Talton <dotalton@cisco.com>

View File

@ -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<||>

View File

@ -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(

View File

@ -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 =''

View File

@ -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
#