mirror of
https://github.com/chylex/dotfiles.git
synced 2025-01-21 14:46:01 +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 }}"
|