mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-17 10:23:13 -06:00
23 lines
392 B
YAML
23 lines
392 B
YAML
---
|
|
|
|
- name: Install additional support packages
|
|
package:
|
|
name:
|
|
- netcat
|
|
- rsync
|
|
- cifs-utils
|
|
- python-lxml
|
|
|
|
- name: Fetch VM ID
|
|
command: "dmidecode -s system-uuid"
|
|
register: az_vm_id
|
|
tags:
|
|
- runtime_pkg
|
|
changed_when: true
|
|
|
|
- name: Use VM ID for cluster node ID
|
|
set_fact:
|
|
atl_cluster_node_id: "{{ az_vm_id.stdout }}"
|
|
tags:
|
|
- runtime_pkg
|