From 9c3736cb1b52f349ab119106cdcdeaccb515afed Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Sun, 24 Mar 2019 20:36:25 +0000 Subject: [PATCH] Replace openstack.org git:// URLs with https:// This is a mechanically generated change to replace openstack.org git:// URLs with https:// equivalents. This is in aid of a planned future move of the git hosting infrastructure to a self-hosted instance of gitea (https://gitea.io), which does not support the git wire protocol at this stage. This update should result in no functional change. For more information see the thread at http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003825.html Change-Id: I9e141aa8e7387a2a8d96fce1d3f54a159d33f4d9 --- devstack/local.conf.compute | 2 +- devstack/local.conf.controller | 6 +++--- doc/source/deploy/configuration.rst | 2 +- doc/source/dev/devstack.rst | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/devstack/local.conf.compute b/devstack/local.conf.compute index 416dd482c..75cd5fb61 100644 --- a/devstack/local.conf.compute +++ b/devstack/local.conf.compute @@ -35,7 +35,7 @@ VNCSERVER_PROXYCLIENT_ADDRESS=$HOST_IP NOVA_INSTANCES_PATH=/opt/stack/data/instances # Enable the Ceilometer plugin for the compute agent -enable_plugin ceilometer git://git.openstack.org/openstack/ceilometer +enable_plugin ceilometer https://git.openstack.org/openstack/ceilometer disable_service ceilometer-acentral,ceilometer-collector,ceilometer-api LOGFILE=$DEST/logs/stack.sh.log diff --git a/devstack/local.conf.controller b/devstack/local.conf.controller index bbc3d004f..1897d21e4 100644 --- a/devstack/local.conf.controller +++ b/devstack/local.conf.controller @@ -28,13 +28,13 @@ ENABLED_SERVICES+=,q-svc,q-dhcp,q-meta,q-agt,q-l3,neutron enable_service n-cauth # Enable the Watcher Dashboard plugin -# enable_plugin watcher-dashboard git://git.openstack.org/openstack/watcher-dashboard +# enable_plugin watcher-dashboard https://git.openstack.org/openstack/watcher-dashboard # Enable the Watcher plugin -enable_plugin watcher git://git.openstack.org/openstack/watcher +enable_plugin watcher https://git.openstack.org/openstack/watcher # Enable the Ceilometer plugin -enable_plugin ceilometer git://git.openstack.org/openstack/ceilometer +enable_plugin ceilometer https://git.openstack.org/openstack/ceilometer # This is the controller node, so disable the ceilometer compute agent disable_service ceilometer-acompute diff --git a/doc/source/deploy/configuration.rst b/doc/source/deploy/configuration.rst index 6b989f94f..ed426d8be 100644 --- a/doc/source/deploy/configuration.rst +++ b/doc/source/deploy/configuration.rst @@ -165,7 +165,7 @@ You can easily generate and update a sample configuration file named :ref:`watcher.conf.sample ` by using these following commands:: - $ git clone git://git.openstack.org/openstack/watcher + $ git clone https://git.openstack.org/openstack/watcher $ cd watcher/ $ tox -e genconfig $ vi etc/watcher/watcher.conf.sample diff --git a/doc/source/dev/devstack.rst b/doc/source/dev/devstack.rst index 157fa7522..3a202cc6e 100644 --- a/doc/source/dev/devstack.rst +++ b/doc/source/dev/devstack.rst @@ -19,7 +19,7 @@ model. To enable the Watcher plugin with DevStack, add the following to the `[[local|localrc]]` section of your controller's `local.conf` to enable the Watcher plugin:: - enable_plugin watcher git://git.openstack.org/openstack/watcher + enable_plugin watcher https://git.openstack.org/openstack/watcher For more detailed instructions, see `Detailed DevStack Instructions`_. Check out the `DevStack documentation`_ for more information regarding DevStack.