Merge "Remove special extra repo setup from AIO bootstrap"

This commit is contained in:
Zuul 2018-06-28 14:57:42 +00:00 committed by Gerrit Code Review
commit 2e607585eb
5 changed files with 0 additions and 58 deletions

View File

@ -13,10 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
- include: "install_packages_{{ ansible_os_family | lower }}.yml"
when:
- ansible_pkg_mgr != 'apt'
- name: Remove known problem packages
package:
name: "{{ packages_remove }}"

View File

@ -1,23 +0,0 @@
---
# 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.
- name: Install RDO package
package:
name: "{{ rdo_package }}"
state: "present"
register: install_cloud_rdo_package
until: install_cloud_rdo_package | success
retries: 5
delay: 2

View File

@ -1,25 +0,0 @@
---
# 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.
- name: Add zypper cloud repositories
zypper_repository:
auto_import_keys: yes
autorefresh: yes
name: "{{ item.name }}"
repo: "{{ item.uri }}"
runrefresh: yes
with_items: "{{ opensuse_openstack_repos }}"
retries: 5
delay: 2

View File

@ -13,8 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
rdo_package: "https://rdoproject.org/repos/openstack-queens/rdo-release-queens.rpm"
packages_install:
- bridge-utils
- btrfs-progs

View File

@ -14,10 +14,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
opensuse_openstack_repos:
- name: "OBS:Cloud:OpenStack:Queens"
uri: "http://download.opensuse.org/repositories/Cloud:/OpenStack:/Queens/openSUSE_Leap_{{ ansible_distribution_version }}"
packages_install:
- bridge-utils
- btrfsprogs