Ansible: mudanças entre as edições

De Wiki Clusterlab.com.br
Ir para navegação Ir para pesquisar
Sem resumo de edição
Linha 20: Linha 20:
<pre>
<pre>
- include_tasks: "os_{{ ansible_facts['os_family']|lower }}.yml"
- include_tasks: "os_{{ ansible_facts['os_family']|lower }}.yml"
</pre>
=Running on=
==MAC OS==
[https://github.com/ansible/ansible/issues/32499 OSX crash complaining of operation `in progress in another thread when fork() was called`]
<pre>
export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES
</pre>
</pre>

Edição das 17h03min de 13 de agosto de 2020

URLS

Log and Verbosity

# Specify the location for the log file
export ANSIBLE_LOG_PATH=~/ansible.log
# Enable Debug
export ANSIBLE_DEBUG=True

# Run with 4*v for connection level verbosity
ansible-playbook -vvvv ...

WSL

Fixing case sensitive

- include_tasks: "os_{{ ansible_facts['os_family']|lower }}.yml"

Running on

MAC OS

OSX crash complaining of operation `in progress in another thread when fork() was called`

export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES