Update URLs

Some URLs are broken, so fix them.
The others are redirect to new URLs,
so replace them with new ones.

The config options of nova serial console proxy
have been gathered in nova/conf/serial_console.py.
So the description in doc/source/guides/nova.rst
is fixed.

Change-Id: Ifd81cc09969341fbf8f135a913fc6003b94e0acc
This commit is contained in:
Takashi NATSUME 2017-07-22 08:59:43 +09:00
parent ab70350403
commit fa0077707e
7 changed files with 14 additions and 16 deletions

View File

@ -14,7 +14,7 @@ Goals
* To provide an environment for the OpenStack CI testing on every commit * To provide an environment for the OpenStack CI testing on every commit
to the projects to the projects
Read more at http://docs.openstack.org/developer/devstack Read more at https://docs.openstack.org/devstack/latest
IMPORTANT: Be sure to carefully read `stack.sh` and any other scripts you IMPORTANT: Be sure to carefully read `stack.sh` and any other scripts you
execute before you run them, as they install software and will alter your execute before you run them, as they install software and will alter your
@ -92,5 +92,5 @@ DevStack can be extensively configured via the configuration file
`local.conf`. It is likely that you will need to provide and modify `local.conf`. It is likely that you will need to provide and modify
this file if you want anything other than the most basic setup. Start this file if you want anything other than the most basic setup. Start
by reading the `configuration guide by reading the `configuration guide
<https://docs.openstack.org/developer/devstack/configuration.html>`_ <https://docs.openstack.org/devstack/latest/configuration.html>`_
for details of the configuration file and the many available options. for details of the configuration file and the many available options.

View File

@ -13,7 +13,7 @@ In Juno, nova implemented a `spec
<http://specs.openstack.org/openstack/nova-specs/specs/juno/implemented/serial-ports.html>`_ <http://specs.openstack.org/openstack/nova-specs/specs/juno/implemented/serial-ports.html>`_
to allow read/write access to the serial console of an instance via to allow read/write access to the serial console of an instance via
`nova-serialproxy `nova-serialproxy
<http://docs.openstack.org/developer/nova/man/nova-serialproxy.html>`_. <https://docs.openstack.org/nova/latest/cli/nova-serialproxy.html>`_.
The service can be enabled by adding ``n-sproxy`` to The service can be enabled by adding ``n-sproxy`` to
``ENABLED_SERVICES``. Further options can be enabled via ``ENABLED_SERVICES``. Further options can be enabled via
@ -62,11 +62,9 @@ The service can be enabled by adding ``n-sproxy`` to
Enabling the service is enough to be functional for a single machine DevStack. Enabling the service is enough to be functional for a single machine DevStack.
These config options are defined in `nova.console.serial These config options are defined in `nova.conf.serial_console
<https://github.com/openstack/nova/blob/master/nova/console/serial.py#L33-L52>`_ <https://github.com/openstack/nova/blob/master/nova/conf/serial_console.py>`_.
and `nova.cmd.serialproxy
<https://github.com/openstack/nova/blob/master/nova/cmd/serialproxy.py#L26-L33>`_.
For more information on OpenStack configuration see the `OpenStack For more information on OpenStack configuration see the `OpenStack
Configuration Reference Configuration Reference
<http://docs.openstack.org/trunk/config-reference/content/list-of-compute-config-options.html>`_ <https://docs.openstack.org/ocata/config-reference/compute.html>`_

View File

@ -441,7 +441,7 @@ function setup_dev_lib {
# project_dir: directory of project repo (e.g., /opt/stack/keystone) # project_dir: directory of project repo (e.g., /opt/stack/keystone)
# extras: comma-separated list of optional dependencies to install # extras: comma-separated list of optional dependencies to install
# (e.g., ldap,memcache). # (e.g., ldap,memcache).
# See http://docs.openstack.org/developer/pbr/#extra-requirements # See https://docs.openstack.org/pbr/latest/user/using.html#extra-requirements
# The command is like "pip install <project_dir>[<extras>]" # The command is like "pip install <project_dir>[<extras>]"
function setup_install { function setup_install {
local project_dir=$1 local project_dir=$1
@ -455,7 +455,7 @@ function setup_install {
# project_dir: directory of project repo (e.g., /opt/stack/keystone) # project_dir: directory of project repo (e.g., /opt/stack/keystone)
# extras: comma-separated list of optional dependencies to install # extras: comma-separated list of optional dependencies to install
# (e.g., ldap,memcache). # (e.g., ldap,memcache).
# See http://docs.openstack.org/developer/pbr/#extra-requirements # See https://docs.openstack.org/pbr/latest/user/using.html#extra-requirements
# The command is like "pip install -e <project_dir>[<extras>]" # The command is like "pip install -e <project_dir>[<extras>]"
function setup_develop { function setup_develop {
local project_dir=$1 local project_dir=$1
@ -487,7 +487,7 @@ function is_in_projects_txt {
# flags: pip CLI options/flags # flags: pip CLI options/flags
# extras: comma-separated list of optional dependencies to install # extras: comma-separated list of optional dependencies to install
# (e.g., ldap,memcache). # (e.g., ldap,memcache).
# See http://docs.openstack.org/developer/pbr/#extra-requirements # See https://docs.openstack.org/pbr/latest/user/using.html#extra-requirements
# The command is like "pip install <flags> <project_dir>[<extras>]" # The command is like "pip install <flags> <project_dir>[<extras>]"
function _setup_package_with_constraints_edit { function _setup_package_with_constraints_edit {
local project_dir=$1 local project_dir=$1
@ -523,7 +523,7 @@ function _setup_package_with_constraints_edit {
# flags: pip CLI options/flags # flags: pip CLI options/flags
# extras: comma-separated list of optional dependencies to install # extras: comma-separated list of optional dependencies to install
# (e.g., ldap,memcache). # (e.g., ldap,memcache).
# See http://docs.openstack.org/developer/pbr/#extra-requirements # See https://docs.openstack.org/pbr/latest/user/using.html#extra-requirements
# The command is like "pip install <flags> <project_dir>[<extras>]" # The command is like "pip install <flags> <project_dir>[<extras>]"
function setup_package { function setup_package {
local project_dir=$1 local project_dir=$1

View File

@ -10,7 +10,7 @@
# This is a collection of some of the settings we have found to be useful # This is a collection of some of the settings we have found to be useful
# in our DevStack development environments. Additional settings are described # in our DevStack development environments. Additional settings are described
# in http://docs.openstack.org/developer/devstack/configuration.html#local-conf # in https://docs.openstack.org/devstack/latest/configuration.html#local-conf
# These should be considered as samples and are unsupported DevStack code. # These should be considered as samples and are unsupported DevStack code.
# The ``localrc`` section replaces the old ``localrc`` configuration file. # The ``localrc`` section replaces the old ``localrc`` configuration file.

View File

@ -5,7 +5,7 @@ description-file =
README.rst README.rst
author = OpenStack author = OpenStack
author-email = openstack-dev@lists.openstack.org author-email = openstack-dev@lists.openstack.org
home-page = http://docs.openstack.org/developer/devstack home-page = https://docs.openstack.org/devstack/latest
classifier = classifier =
Intended Audience :: Developers Intended Audience :: Developers
License :: OSI Approved :: Apache Software License License :: OSI Approved :: Apache Software License

View File

@ -1534,7 +1534,7 @@ if [[ "$USE_SYSTEMD" == "True" ]]; then
echo echo
echo "Services are running under systemd unit files." echo "Services are running under systemd unit files."
echo "For more information see: " echo "For more information see: "
echo "https://docs.openstack.org/developer/devstack/systemd.html" echo "https://docs.openstack.org/devstack/latest/systemd.html"
echo echo
fi fi

View File

@ -157,7 +157,7 @@ if is_fedora; then
# [1] https://bugzilla.redhat.com/show_bug.cgi?id=1099031 # [1] https://bugzilla.redhat.com/show_bug.cgi?id=1099031
# [2] https://bugs.launchpad.net/neutron/+bug/1455303 # [2] https://bugs.launchpad.net/neutron/+bug/1455303
# [3] https://github.com/redhat-openstack/openstack-puppet-modules/blob/master/firewall/manifests/linux/redhat.pp # [3] https://github.com/redhat-openstack/openstack-puppet-modules/blob/master/firewall/manifests/linux/redhat.pp
# [4] http://docs.openstack.org/developer/devstack/guides/neutron.html # [4] https://docs.openstack.org/devstack/latest/guides/neutron.html
if is_package_installed firewalld; then if is_package_installed firewalld; then
sudo systemctl disable firewalld sudo systemctl disable firewalld
# The iptables service files are no longer included by default, # The iptables service files are no longer included by default,