It may be required to override the repo information in its entirety, rather than just the URL. This patch allows that to be done. Change-Id: Ic7e77f0a442a82a424e75a9d79c9c6116818cfc1
26 lines
861 B
YAML
26 lines
861 B
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.
|
|
|
|
- name: Add galera client zypper repository
|
|
zypper_repository:
|
|
refresh: yes
|
|
name: "{{ item.name }}"
|
|
repo: "{{ item.uri }}"
|
|
auto_import_keys: yes
|
|
register: zypper_repository_added
|
|
with_items: "{{ galera_client_repo }}"
|
|
tags:
|
|
- galera-repos
|