diff --git a/.zuul.yaml b/.zuul.yaml deleted file mode 100644 index b60b680..0000000 --- a/.zuul.yaml +++ /dev/null @@ -1,7 +0,0 @@ -- project: - check: - jobs: - - openstack-tox-bashate - gate: - jobs: - - openstack-tox-bashate diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..b72ee4f --- /dev/null +++ b/README.rst @@ -0,0 +1,6 @@ +This project is no longer maintained. + +The contents of this repository are still available in the Git +source code management system. To see the contents of this +repository before it reached its end of life, please check out the +previous commit with "git checkout HEAD^1". diff --git a/devstack/plugin.sh b/devstack/plugin.sh deleted file mode 100644 index 7fafd06..0000000 --- a/devstack/plugin.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -# -# Copyright 2015 Hewlett-Packard Development Company, L.P. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. - -function get_transport_url { - local virtual_host=$1 - echo "pika://$RABBIT_USERID:$RABBIT_PASSWORD@$RABBIT_HOST:5672/$virtual_host" -} - -function get_notification_url { - local virtual_host=$1 - echo "pika://$RABBIT_USERID:$RABBIT_PASSWORD@$RABBIT_HOST:5672/$virtual_host" -} - -# Note: no need to override default 'rpc_backend_add_vhost' since the -# backend is also rabbitmq - -function iniset_rpc_backend { - local package=$1 - local file=$2 - local section=${3:-DEFAULT} - local virtual_host=$4 - - iniset $file $section transport_url $(get_transport_url "$virtual_host") - iniset $file oslo_messaging_notifications transport_url $(get_notification_url "$virtual_host") -} diff --git a/devstack/settings b/devstack/settings deleted file mode 100644 index e69de29..0000000 diff --git a/tox.ini b/tox.ini deleted file mode 100644 index 4623d64..0000000 --- a/tox.ini +++ /dev/null @@ -1,26 +0,0 @@ -[tox] -minversion = 3.1.1 -skipsdist = True -envlist = bashate -ignore_basepython_conflict = true - -[testenv] -basepython = python3 -usedevelop = False - -[testenv:bashate] -deps = bashate -whitelist_externals = bash -commands = bash -c "find {toxinidir} \ - -not \( -type d -name .?\* -prune \) \ - -not \( -type d -name doc -prune \) \ - -type f \ - -not -name \*~ \ - -not -name \*.md \ - \( \ - -name \*.sh -or \ - -name \*rc -or \ - -name functions\* -or \ - -wholename \*/lib/\* \ - \) \ - -print0 | xargs -0 bashate -v"