0f06112eb2
When ansible-lint runs it triggers an error for tasks that call out to the package manager instead of using the package module. These tasks call out to the dpkg and rpm package applications to query if a version of rabbitmq is already installed and in need of an upgrade. Change-Id: I0ca5b0403562537d2ecfdba0466a87fb0b874933 Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
70 lines
2.2 KiB
YAML
70 lines
2.2 KiB
YAML
---
|
|
# Copyright 2015, Rackspace US, Inc.
|
|
#
|
|
# 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.
|
|
|
|
# ansible-lint fails on this task due to the detected use of 'dpkg',
|
|
# so we skip this task in the ansible-lint check by using the
|
|
# 'skip_ansible_lint' tag
|
|
- name: Get version of installed RabbitMQ package (deb)
|
|
shell: |
|
|
dpkg -l | grep rabbitmq-server
|
|
failed_when: false
|
|
register: installed_rabbitmq_deb
|
|
when:
|
|
- not rabbitmq_upgrade | bool
|
|
- ansible_pkg_mgr == 'apt'
|
|
tags:
|
|
- rabbitmq-package-deb
|
|
- rabbitmq-apt-packages
|
|
- skip_ansible_lint
|
|
|
|
# ansible-lint fails on this task due to the detected use of 'rpm',
|
|
# so we skip this task in the ansible-lint check by using the
|
|
# 'skip_ansible_lint' tag
|
|
- name: Get version of installed RabbitMQ package (rpm)
|
|
shell: |
|
|
rpm -qa | grep rabbitmq-server
|
|
failed_when: false
|
|
register: installed_rabbitmq_rpm
|
|
when:
|
|
- not rabbitmq_upgrade | bool
|
|
- ansible_pkg_mgr == 'yum'
|
|
tags:
|
|
- rabbitmq-package-rpm
|
|
- rabbitmq-apt-packages
|
|
- skip_ansible_lint
|
|
|
|
- name: Register a fact for the installed RabbitMQ version
|
|
set_fact:
|
|
installed_rabbitmq: "{{ item }}"
|
|
when: not item | skipped and item | changed
|
|
with_items:
|
|
- "{{ installed_rabbitmq_deb }}"
|
|
- "{{ installed_rabbitmq_rpm }}"
|
|
|
|
- name: Compare installed version of RabbitMQ with new version variable
|
|
fail:
|
|
msg: "To install a new major/minor version of RabbitMQ set '-e rabbitmq_upgrade=true'."
|
|
when:
|
|
- not rabbitmq_upgrade | bool
|
|
- installed_rabbitmq.rc == 0
|
|
- not installed_rabbitmq.stdout | search(rabbitmq_package_version)
|
|
tags:
|
|
- rabbitmq-package-deb
|
|
- rabbitmq-package-rpm
|
|
- rabbitmq-apt-packages
|
|
|
|
- include: rabbitmq_upgrade_prep.yml
|
|
when: rabbitmq_upgrade | bool
|