Satellite 6 Install WIP

This commit is contained in:
Patrick Toal
2018-11-20 10:36:24 -05:00
parent 0223705ed2
commit cc0ff049bd
48 changed files with 911 additions and 132 deletions

View File

@@ -0,0 +1,21 @@
---
- name: "Include install vars"
include_vars: "vars/install.yml"
tags:
- "install"
- "update_satellite"
#Install the base software
- name: "Install_software"
become: "yes"
yum:
name: "{{ item }}"
state: "latest"
with_items: "{{
satellite_deployment_packages[satellite_deployment_version | string] +
satellite_deployment_extra_packages + satellite_deployment_plugin_packages
}}"
tags:
- "install"
- "update_satellite"
- "skip_ansible_lint" # ANSIBLE0010