vars: Drop galera_percona_xtrabackup_repo_url variable

This variable was only used on Ubuntu distributions to select the
upstream Percona repository. There is not much point in having this
configurable so simply hardcode the upstream url to the repository
information and drop the variable.

Change-Id: I12088bd52ab3c392913385001fb71555e101ef56
This commit is contained in:
Markos Chandras 2018-01-16 10:25:33 +00:00
parent 356a8d28a8
commit f047cae496
3 changed files with 7 additions and 5 deletions

View File

@ -52,9 +52,6 @@ galera_repo: "{{ _galera_repo }}"
# Set the gpg keys needed to be imported # Set the gpg keys needed to be imported
galera_gpg_keys: "{{ _galera_gpg_keys | default([]) }}" galera_gpg_keys: "{{ _galera_gpg_keys | default([]) }}"
# Set the URL for the Percona Xtrabackup repository
galera_percona_xtrabackup_repo_url: "{{ _galera_percona_xtrabackup_repo_url | default('') }}"
# Set the rpo information for the Percona Xtrabackup repository # Set the rpo information for the Percona Xtrabackup repository
galera_percona_xtrabackup_repo: "{{ _galera_percona_xtrabackup_repo | default({}) }}" galera_percona_xtrabackup_repo: "{{ _galera_percona_xtrabackup_repo | default({}) }}"

View File

@ -0,0 +1,6 @@
---
deprecations:
- |
The ``galera_percona_xtrabackup_repo_url`` variable which was used on
Ubuntu distributions to select the upstream Percona repository has been
dropped and the default upstream repository is always used from now on.

View File

@ -104,9 +104,8 @@ qpress_arch_sha256:
ppc64le: "a31d3e00dbcec9b3f98eae82b261d054d0b80a57f4a38967d0e953811cb082f3" ppc64le: "a31d3e00dbcec9b3f98eae82b261d054d0b80a57f4a38967d0e953811cb082f3"
# Repositories # Repositories
_galera_percona_xtrabackup_repo_url: "http://repo.percona.com/apt"
_galera_percona_xtrabackup_repo: _galera_percona_xtrabackup_repo:
repo: "deb {{ galera_percona_xtrabackup_repo_url }} {{ ansible_distribution_release }} main" repo: "deb http://repo.percona.com/apt {{ ansible_distribution_release }} main"
state: "present" state: "present"
filename: "Percona" filename: "Percona"