mirror of
https://github.com/chylex/dotfiles.git
synced 2024-11-23 17:42:46 +01:00
11 lines
157 B
YAML
11 lines
157 B
YAML
---
|
|
|
|
- name: Detect shell
|
|
shell: "echo $SHELL"
|
|
register: shell
|
|
changed_when: false
|
|
|
|
- name: Set shell fact
|
|
set_fact:
|
|
shell: "{{ shell.stdout }}"
|