Merge "Add tracepath commands to the AIO"
This commit is contained in:
@@ -75,11 +75,3 @@
|
||||
with_items: "{{ packages_remove }}"
|
||||
tags:
|
||||
- remove-packages
|
||||
|
||||
- name: Install required packages
|
||||
apt:
|
||||
name: "{{ item }}"
|
||||
state: present
|
||||
with_items: "{{ packages_install }}"
|
||||
tags:
|
||||
- install-packages
|
||||
|
||||
@@ -47,6 +47,14 @@
|
||||
tags:
|
||||
- install-apt
|
||||
|
||||
- name: Install packages
|
||||
package:
|
||||
name: "{{ item }}"
|
||||
state: present
|
||||
with_items: "{{ packages_install }}"
|
||||
tags:
|
||||
- install-packages
|
||||
|
||||
# Prepare the data disk, if one is provided
|
||||
- include: prepare_data_disk.yml
|
||||
when: bootstrap_host_data_disk_device != None
|
||||
|
||||
17
tests/roles/bootstrap-host/vars/redhat.yml
Normal file
17
tests/roles/bootstrap-host/vars/redhat.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
# Copyright 2017, 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.
|
||||
|
||||
packages_install:
|
||||
- iputils
|
||||
@@ -28,6 +28,7 @@ packages_install:
|
||||
- vim
|
||||
- vlan
|
||||
- xfsprogs
|
||||
- iputils-tracepath
|
||||
|
||||
packages_remove:
|
||||
- libmysqlclient18
|
||||
|
||||
Reference in New Issue
Block a user