Merge "Fix outdated links and document spelling error"

This commit is contained in:
Jenkins
2017-09-22 03:24:30 +00:00
committed by Gerrit Code Review
8 changed files with 10 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
## 8.0.0 and beyond
From 8.0.0 release and beyond, release notes are published on
[docs.openstack.org](http://docs.openstack.org/releasenotes/puppet-nova/).
[docs.openstack.org](https://docs.openstack.org/releasenotes/puppet-nova/).
##2015-11-25 - 7.0.0
###Summary

View File

@@ -1,7 +1,7 @@
Team and repository tags
========================
[![Team and repository tags](http://governance.openstack.org/badges/puppet-nova.svg)](http://governance.openstack.org/reference/tags/index.html)
[![Team and repository tags](https://governance.openstack.org/tc/badges/puppet-nova.svg)](https://governance.openstack.org/tc/reference/tags/index.html)
<!-- Change things from this point on -->
@@ -43,7 +43,7 @@ Setup
### Beginning with nova
To utilize the nova module's functionality you will need to declare multiple resources. This is not an exhaustive list of all the components needed, we recommend you consult and understand the [core openstack](http://docs.openstack.org) documentation.
To utilize the nova module's functionality you will need to declare multiple resources. This is not an exhaustive list of all the components needed, we recommend you consult and understand the [core openstack](https://docs.openstack.org) documentation.
```puppet
class { 'nova':

View File

@@ -1,5 +1,5 @@
# This is a cross-platform list tracking distribution packages needed by tests;
# see http://docs.openstack.org/infra/bindep/ for additional information.
# see https://docs.openstack.org/infra/bindep/ for additional information.
libxml2-devel [test platform:rpm]
libxml2-dev [test platform:dpkg]

View File

@@ -77,7 +77,7 @@ Puppet::Type.type(:nova_aggregate).provide(
def metadata=(value)
# clear obsolete keys
# wip untill #1559866
# wip until #1559866
# if @property_hash[:metadata].keys.length > 0
# properties = [@resource[:name] ]
# (@property_hash[:metadata].keys - @resource[:metadata].keys).each do |key|

View File

@@ -32,7 +32,7 @@
# Optional
#
# [*hosts*]
# A comma seperated list with hosts or a single host. ie "host1,host2"
# A comma separated list with hosts or a single host. ie "host1,host2"
# Optional
#
@@ -102,7 +102,7 @@ Puppet::Type.newtype(:nova_aggregate) do
end
newproperty(:hosts) do
desc 'Single host or comma seperated list of hosts'
desc 'Single host or comma separated list of hosts'
#convert DSL/string form to internal form
munge do |value|
if value.is_a?(Array)

View File

@@ -100,7 +100,7 @@ class nova::compute::rbd (
require => Anchor['nova::config::begin'],
}
#Variable name shrinked in favor of removing
#Variable name shrunk in favor of removing
#the more than 140 chars puppet-lint warning.
#variable used in the get-or-set virsh secret
#resource.

View File

@@ -64,7 +64,7 @@ class nova::deps {
Anchor['nova::install::end'] ~> Anchor['nova::service::begin']
Anchor['nova::config::end'] ~> Anchor['nova::service::begin']
# This is here for backwards compatability for any external users of the
# This is here for backwards compatibility for any external users of the
# nova-start anchor. This should be considered deprecated and removed in the
# N cycle
anchor { 'nova-start':

View File

@@ -2,5 +2,5 @@
fixes:
- |
The configuration for libvirt/enabled_perf_events requires a comma
seperated string for the value. The libvirt_enabled_perf_events parameter
separated string for the value. The libvirt_enabled_perf_events parameter
will now properly convert arrays being passed in to a string. LP#1690946