Fix outdated links and document spelling error

Update doc links according to OpenStack document migration.
Use https instead of http for docs links.
1)http://docs.openstack.org/releasenotes/puppet-nova/
  --> https://docs.openstack.org/releasenotes/puppet-nova/
2)http://governance.openstack.org/badges/puppet-nova.svg
  --> https://governance.openstack.org/tc/badges/puppet-nova.svg
3)http://governance.openstack.org/reference/tags/index.html
  --> https://governance.openstack.org/tc/reference/tags/index.html
4)http://docs.openstack.org/infra/bindep/
  -->https://docs.openstack.org/infra/bindep/
Closes-Bug:#1717739

Change-Id: I89afa0516cc1c0f0abf390bf4425f2d0efffd603
This commit is contained in:
zhangbailin
2017-09-16 19:20:06 -07:00
parent 2e5e936595
commit a5419eca27
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