Fixed misspelling in Kolla-ansible

Fixed misspelling in both comments and code function names 

Change-Id: Iaed5f246a9b02fd64433671fd0c0ee41b40bd222
This commit is contained in:
Pengfei Zhang 2018-01-19 09:59:28 +08:00 committed by Pengfei Zhang
parent 9e8eeb2c95
commit 88e5a440a5
2 changed files with 5 additions and 5 deletions

View File

@ -60,8 +60,8 @@ ovs_socket_mem: 1024
ovs_hugepage_mountpoint: /dev/hugepages ovs_hugepage_mountpoint: /dev/hugepages
# ovs <2.7 required dpdk phyical port names to be index # ovs <2.7 required dpdk phyical port names to be index
# in pci adress order as dpdkX where X is the index # in pci address order as dpdkX where X is the index
# ovs>=2.7 allows arbitray names but the pci adress # ovs>=2.7 allows arbitray names but the pci address
# must be set in a new dpdkdev-opt field # must be set in a new dpdkdev-opt field
# valid values are indexed or named. # valid values are indexed or named.
ovs_physical_port_policy: named ovs_physical_port_policy: named

View File

@ -384,7 +384,7 @@ function uninstall {
} }
function useage { function usage {
cat << "EOF" cat << "EOF"
ovs-dpdkctl.sh: A tool to configure ovs with dpdk. ovs-dpdkctl.sh: A tool to configure ovs with dpdk.
@ -417,7 +417,7 @@ commands:
ovs-dpdkctl config. ovs-dpdkctl config.
- creates dpdk ports as defined by ovs port_mappings in - creates dpdk ports as defined by ovs port_mappings in
ovs-dpdkctl config. ovs-dpdkctl config.
- useage: - usage:
- prints this message - prints this message
options: options:
@ -495,7 +495,7 @@ if [ $# -ge 1 ]; then
func=$1 func=$1
shift shift
else else
func="useage" func="usage"
fi fi
#replace with switch later #replace with switch later