Files
openstack-ansible/scripts/upgrade-utilities/playbooks/mariadb-apt-cleanup.yml
Jimmy McCrory 7a70d25a88 Remove existing MariaDB HTTPS repos during upgrade
The default MariaDB apt repo was changed from using HTTPS to HTTP in
change I67a9fb48ee08866bd59d70730e62b7da28f81125.

Add an upgrade playbook between M->N to ensure that existing repos are
removed to avoid a 'Duplicate sources.list entry' error when the new
default is put in place.

Change-Id: If9693d61904cce9c57fd7f5fad68b57f2159955d
2016-09-18 13:18:56 -07:00

25 lines
894 B
YAML

---
# Copyright 2016, 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.
- name: MariaDB apt sources cleanup
hosts: "hosts:all_containers"
gather_facts: false
user: root
tasks:
- name: Remove MariaDB repositories left over from Mitaka
apt_repository:
repo: "deb https://mirror.rackspace.com/mariadb/repo/10.0/ubuntu trusty main"
state: "absent"