Merge "Add tracepath commands to the AIO"

This commit is contained in:
Jenkins
2017-02-09 16:14:20 +00:00
committed by Gerrit Code Review
4 changed files with 26 additions and 8 deletions

View File

@@ -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

View File

@@ -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

View 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

View File

@@ -28,6 +28,7 @@ packages_install:
- vim
- vlan
- xfsprogs
- iputils-tracepath
packages_remove:
- libmysqlclient18