/ansible-shell

Ansible role to configure/add a shell.

MIT LicenseMIT

ansible-shell

Ansible role to configure/add a shell.

Build Status Github All Releases GitHub forks GitHub stars GitHub watchers Twitter Follow License

Role Defaults Variables

ansible_shell:  [
  "zsh",
  "zsh-completions",
  "bash",
  "bash-completion"
]

Example:

- hosts: all
  vars:
    ansible_shell:
      - "zsh"
      - "zsh-completions"
      - "bash"
      - "bash-completion"
  roles:
    - { role: ansible-shell }