diff --git a/tests/roles/bootstrap-host/tasks/install_packages.yml b/tests/roles/bootstrap-host/tasks/install_packages.yml index 9e309f856e..1d5b29f31c 100644 --- a/tests/roles/bootstrap-host/tasks/install_packages.yml +++ b/tests/roles/bootstrap-host/tasks/install_packages.yml @@ -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 }}" diff --git a/tests/roles/bootstrap-host/tasks/install_packages_redhat.yml b/tests/roles/bootstrap-host/tasks/install_packages_redhat.yml deleted file mode 100644 index 9cbdd32c43..0000000000 --- a/tests/roles/bootstrap-host/tasks/install_packages_redhat.yml +++ /dev/null @@ -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 diff --git a/tests/roles/bootstrap-host/tasks/install_packages_suse.yml b/tests/roles/bootstrap-host/tasks/install_packages_suse.yml deleted file mode 100644 index 6040c9b16f..0000000000 --- a/tests/roles/bootstrap-host/tasks/install_packages_suse.yml +++ /dev/null @@ -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 diff --git a/tests/roles/bootstrap-host/vars/redhat.yml b/tests/roles/bootstrap-host/vars/redhat.yml index 14fe403a27..3355dcd1ba 100644 --- a/tests/roles/bootstrap-host/vars/redhat.yml +++ b/tests/roles/bootstrap-host/vars/redhat.yml @@ -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 diff --git a/tests/roles/bootstrap-host/vars/suse.yml b/tests/roles/bootstrap-host/vars/suse.yml index 7f26c4e7c9..57145e8c1a 100644 --- a/tests/roles/bootstrap-host/vars/suse.yml +++ b/tests/roles/bootstrap-host/vars/suse.yml @@ -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