35 lines
1.5 KiB
YAML
35 lines
1.5 KiB
YAML
---
|
|
# Copyright 2017, SUSE LINUX GmbH.
|
|
#
|
|
# 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.
|
|
|
|
_rabbitmq_install_method: distro
|
|
|
|
# These are all here as alternative ways to get the required packages either by
|
|
# installing the package directly or getting it from the CentOS mirror
|
|
_rabbitmq_package_url: "http://www.rabbitmq.com/releases/rabbitmq-server/v3.6.14/rabbitmq-server-3.6.14-1.suse.noarch.rpm"
|
|
_rabbitmq_package_version: "{{ rabbitmq_package_url.split('/')[-1].rsplit('.', 1)[0] }}"
|
|
_rabbitmq_release_version: "{{ rabbitmq_package_version.split('-')[2] }}"
|
|
_rabbitmq_package_sha256: "72d6e51b4eb723ebb4e6be1580dee3722b57412fdd26c53aead81f4c2a8ebe05"
|
|
_rabbitmq_package_path: "/opt/rabbitmq-server.rpm"
|
|
|
|
_rabbitmq_gpg_keys:
|
|
- key_name: 'rabbitmq-release-signing-key.asc'
|
|
keyserver: 'https://www.rabbitmq.com'
|
|
- key_name: 'erlang_solutions.asc'
|
|
keyserver: 'https://packages.erlang-solutions.com/ubuntu'
|
|
|
|
rabbitmq_distro_packages:
|
|
- rabbitmq-server
|
|
- rabbitmq-server-plugins
|