Skip to content

Commit 31412f5

Browse files
Jenkinsopenstack-gerrit
authored andcommitted
Merge "Update URLs"
2 parents e015153 + fa00777 commit 31412f5

7 files changed

Lines changed: 14 additions & 16 deletions

File tree

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Goals
1414
* To provide an environment for the OpenStack CI testing on every commit
1515
to the projects
1616

17-
Read more at http://docs.openstack.org/developer/devstack
17+
Read more at https://docs.openstack.org/devstack/latest
1818

1919
IMPORTANT: Be sure to carefully read `stack.sh` and any other scripts you
2020
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
9292
`local.conf`. It is likely that you will need to provide and modify
9393
this file if you want anything other than the most basic setup. Start
9494
by reading the `configuration guide
95-
<https://docs.openstack.org/developer/devstack/configuration.html>`_
95+
<https://docs.openstack.org/devstack/latest/configuration.html>`_
9696
for details of the configuration file and the many available options.

doc/source/guides/nova.rst

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In Juno, nova implemented a `spec
1313
<http://specs.openstack.org/openstack/nova-specs/specs/juno/implemented/serial-ports.html>`_
1414
to allow read/write access to the serial console of an instance via
1515
`nova-serialproxy
16-
<http://docs.openstack.org/developer/nova/man/nova-serialproxy.html>`_.
16+
<https://docs.openstack.org/nova/latest/cli/nova-serialproxy.html>`_.
1717

1818
The service can be enabled by adding ``n-sproxy`` to
1919
``ENABLED_SERVICES``. Further options can be enabled via
@@ -62,11 +62,9 @@ The service can be enabled by adding ``n-sproxy`` to
6262

6363
Enabling the service is enough to be functional for a single machine DevStack.
6464

65-
These config options are defined in `nova.console.serial
66-
<https://github.com/openstack/nova/blob/master/nova/console/serial.py#L33-L52>`_
67-
and `nova.cmd.serialproxy
68-
<https://github.com/openstack/nova/blob/master/nova/cmd/serialproxy.py#L26-L33>`_.
65+
These config options are defined in `nova.conf.serial_console
66+
<https://github.com/openstack/nova/blob/master/nova/conf/serial_console.py>`_.
6967

7068
For more information on OpenStack configuration see the `OpenStack
7169
Configuration Reference
72-
<http://docs.openstack.org/trunk/config-reference/content/list-of-compute-config-options.html>`_
70+
<https://docs.openstack.org/ocata/config-reference/compute.html>`_

inc/python

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ function setup_dev_lib {
441441
# project_dir: directory of project repo (e.g., /opt/stack/keystone)
442442
# extras: comma-separated list of optional dependencies to install
443443
# (e.g., ldap,memcache).
444-
# See http://docs.openstack.org/developer/pbr/#extra-requirements
444+
# See https://docs.openstack.org/pbr/latest/user/using.html#extra-requirements
445445
# The command is like "pip install <project_dir>[<extras>]"
446446
function setup_install {
447447
local project_dir=$1
@@ -455,7 +455,7 @@ function setup_install {
455455
# project_dir: directory of project repo (e.g., /opt/stack/keystone)
456456
# extras: comma-separated list of optional dependencies to install
457457
# (e.g., ldap,memcache).
458-
# See http://docs.openstack.org/developer/pbr/#extra-requirements
458+
# See https://docs.openstack.org/pbr/latest/user/using.html#extra-requirements
459459
# The command is like "pip install -e <project_dir>[<extras>]"
460460
function setup_develop {
461461
local project_dir=$1
@@ -487,7 +487,7 @@ function is_in_projects_txt {
487487
# flags: pip CLI options/flags
488488
# extras: comma-separated list of optional dependencies to install
489489
# (e.g., ldap,memcache).
490-
# See http://docs.openstack.org/developer/pbr/#extra-requirements
490+
# See https://docs.openstack.org/pbr/latest/user/using.html#extra-requirements
491491
# The command is like "pip install <flags> <project_dir>[<extras>]"
492492
function _setup_package_with_constraints_edit {
493493
local project_dir=$1
@@ -523,7 +523,7 @@ function _setup_package_with_constraints_edit {
523523
# flags: pip CLI options/flags
524524
# extras: comma-separated list of optional dependencies to install
525525
# (e.g., ldap,memcache).
526-
# See http://docs.openstack.org/developer/pbr/#extra-requirements
526+
# See https://docs.openstack.org/pbr/latest/user/using.html#extra-requirements
527527
# The command is like "pip install <flags> <project_dir>[<extras>]"
528528
function setup_package {
529529
local project_dir=$1

samples/local.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
# This is a collection of some of the settings we have found to be useful
1212
# in our DevStack development environments. Additional settings are described
13-
# in http://docs.openstack.org/developer/devstack/configuration.html#local-conf
13+
# in https://docs.openstack.org/devstack/latest/configuration.html#local-conf
1414
# These should be considered as samples and are unsupported DevStack code.
1515

1616
# The ``localrc`` section replaces the old ``localrc`` configuration file.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description-file =
55
README.rst
66
author = OpenStack
77
author-email = openstack-dev@lists.openstack.org
8-
home-page = http://docs.openstack.org/developer/devstack
8+
home-page = https://docs.openstack.org/devstack/latest
99
classifier =
1010
Intended Audience :: Developers
1111
License :: OSI Approved :: Apache Software License

stack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1534,7 +1534,7 @@ if [[ "$USE_SYSTEMD" == "True" ]]; then
15341534
echo
15351535
echo "Services are running under systemd unit files."
15361536
echo "For more information see: "
1537-
echo "https://docs.openstack.org/developer/devstack/systemd.html"
1537+
echo "https://docs.openstack.org/devstack/latest/systemd.html"
15381538
echo
15391539
fi
15401540

tools/fixup_stuff.sh

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

0 commit comments

Comments
 (0)