15 lines
396 B
YAML
15 lines
396 B
YAML
---
|
|
|
|
- name: Run common rolls for all common hosts
|
|
hosts: common_first
|
|
become: true
|
|
roles:
|
|
- role: common
|
|
tags: common
|
|
vars:
|
|
ansible_user: "{{ host_vars_common_init_ssh_user }}"
|
|
ansible_ssh_pass: "{{ host_vars_common_init_ssh_pass }}"
|
|
ansible_become_password: "{{ host_vars_common_init_ssh_pass }}"
|
|
ansible_port: 9922
|
|
ansible_become_method: su
|