openstack-ansible-tests/test-install-openstack-hosts.yml
Jesse Pretorius 4a733c4f9c Remove redundant apt cache update task
There's no reason for this task to be in its own file.
It's not used anywhere but this play. The task also is
not necessary, given that every role does its own updates
when it needs to and the test execution does a cache
update right at the start in order to install the dependent
packages.

All in all, this is a waste of time, so let's just purge it.

Change-Id: I9cc872189b87eb65c4ee7623d4141be41d207f7a
2018-07-14 14:37:28 +01:00

30 lines
985 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: Execute the openstack-host role
hosts: localhost
# This set of tasks runs against localhost
# and requires root access, but tests run as
# the user running the playbook (zuul). As
# such, we use a local connection and become.
connection: local
become: yes
gather_facts: true
any_errors_fatal: true
roles:
- role: "openstack_hosts"
vars_files:
- test-vars.yml