blob: 42b134c1f19afba0e65835c982a0fe70454296a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
- name: retrieve zsh path # noqa no-changed-when command-instead-of-shell
shell: command -v zsh
register: zsh_path
- name: ensure zsh is used for workstation user
user:
name: "{{ workstation_user }}"
shell: "{{ zsh_path.stdout_lines[0] }}"
|