15 lines
346 B
YAML
15 lines
346 B
YAML
---
|
|
# Facts that must be gathered after running tasks.
|
|
|
|
- name: General | Facts | Gather | Locate bash
|
|
shell: which bash
|
|
register: bash_exec
|
|
|
|
- name: General | Facts | Gather | Locate ansible-pull
|
|
shell: which ansible-pull
|
|
register: ansible_pull_exec
|
|
|
|
- name: General | Facts | Gather | Locate zsh
|
|
shell: which zsh
|
|
register: zsh_exec
|