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,16 @@
---
- name: "Set remote_manifest fact"
set_fact:
"satellite_deployment_remote_manifest": "{{
'http://' in satellite_deployment_manifest_path or
'ftp://' in satellite_deployment_manifest_path }}"
- name: 'Execute command to get netmask'
shell: "ipcalc --netmask {{ satellite_deployment_ip_address }}/{{
satellite_deployment_net_prefix }} | cut -d= -f2"
register: "satellite_deployment_netmas_result"
- name: "Set netmask fact"
set_fact:
"satellite_deployment_netmask": "{{
satellite_deployment_netmas_result.stdout }}"