AZURE-211 Renamed az_* files to azure_*

This commit is contained in:
dbacon
2020-08-25 09:50:56 +01:00
parent 8654b1aeef
commit d6c3fb07de
24 changed files with 23 additions and 23 deletions

View File

@@ -0,0 +1,22 @@
---
- name: Install additional support packages
package:
name:
- netcat
- rsync
- cifs-utils
- python-lxml
- name: Fetch VM ID
command: "dmidecode -s system-uuid"
register: azure_vm_id
tags:
- runtime_pkg
changed_when: true
- name: Use VM ID for cluster node ID
set_fact:
atl_cluster_node_id: "{{ azure_vm_id.stdout }}"
tags:
- runtime_pkg